UNPKG

tranz

Version:

The framework for transform anything

101 lines (100 loc) 2.29 kB
{ "name": "tranz", "version": "0.6.0", "main": "lib/index.js", "description": "The framework for transform anything", "author": "imcuttle", "files": [ "lib", "src", "bin.js" ], "bin": "./bin.js", "scripts": { "test": "jest", "build": "rimraf lib && tsc", "dev": "npm run build -- -w", "prepare": "npm run build", "prepublishOnly": "npm test", "benchmark": "node __perf__", "version": "npm run changelog", "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md" }, "sideEffects": false, "engines": { "node": ">=6" }, "keywords": [ "imcuttle", "tranz" ], "typings": "lib/index.d.ts", "license": "MIT", "repository": "imcuttle/tranz", "jest": { "coveragePathIgnorePatterns": [ "__tests__/.+", "lib/.+", "/.*\\.js$/" ], "transform": { "^.+\\.tsx?$": "ts-jest", "^.+\\.jsx?$": "babel-jest" }, "moduleFileExtensions": [ "ts", "tsx", "js", "jsx", "json", "node" ], "testMatch": [ "**/__test{s,}__/*.(spec|test).{t,j}s{x,}" ] }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "devDependencies": { "@commitlint/cli": "^7.1.2", "@commitlint/config-conventional": "^7.1.2", "@types/jest": "^23.3.2", "@types/node": "^10.11.2", "benchmark": "^2.1.4", "conventional-changelog-cli": "^2.0.5", "gentle-cli": "^1.0.3", "husky": "^1.0.1", "jest": "^23.6.0", "prettier": "^1.14.3", "pretty-quick": "^1.7.0", "rimraf": "^2.6.2", "ts-jest": "^23.10.2", "typescript": "^3.1.1" }, "dependencies": { "@moyuyc/worker-farm": "^1.6.0", "concat-stream": "^1.6.2", "cosmiconfig": "^5.0.6", "execa": "^1.0.0", "is-plain-obj": "^1.1.0", "json-buffer": "^3.0.1", "loader-utils": "^1.1.0", "lodash.isempty": "^4.4.0", "minimist": "^1.2.0", "module-interop": "^1.2.0", "p-reduce": "^1.0.0", "pify": "^4.0.0", "quote-it": "^1.0.1", "resolve-from": "^4.0.0", "verror": "^1.10.0" }, "husky": { "hooks": { "commit-msg": "commitlint -e $HUSKY_GIT_PARAMS", "pre-commit": "pretty-quick --staged" } } }