pot-js
Version:
Process management module
115 lines (114 loc) • 2.74 kB
JSON
{
"name": "pot-js",
"description": "Process management module",
"version": "0.0.0-beta.51",
"scripts": {
"start": "yarn cli start ./test/fixtures/socket",
"test": "cross-env POT_DEV=true jest --runInBand",
"test:server": "yarn cli start ./test/fixtures/server",
"cli": "cross-env POT_DEV=true ./bin/pot",
"prebuild": "rimraf lib",
"build": "babel src -d lib",
"build:watch": "yarn build -- -w",
"preversion": "yarn test && yarn build"
},
"main": "lib/index",
"bin": {
"pot": "bin/pot"
},
"files": [
"LICENSE.md",
"README.md",
"bin",
"lib"
],
"engines": {
"node": ">=6.0.0"
},
"keywords": [
"process",
"management",
"daemon",
"cluster",
"cli",
"monitor",
"cross-platform",
"forever",
"pm2"
],
"repository": "git@github.com:Cap32/pot-js.git",
"author": "Cap32 <webb.png@gmail.com>",
"license": "MIT",
"dependencies": {
"aggregate-error": "^1.0.0",
"ajv": "^6.4.0",
"chalk": "^1.1.3",
"chokidar": "^2.0.2",
"cli-table": "^0.3.1",
"create-local-domain-socket": "^1.0.1",
"cross-spawn": "^5.1.0",
"delay": "^2.0.0",
"filesize": "^3.6.1",
"find-port-sync": "^1.0.0",
"fkill": "^5.1.0",
"fs-extra": "^3.0.1",
"globby": "^8.0.1",
"home-or-tmp": "^2.0.0",
"import-file": "^1.3.0",
"inquirer": "^5.2.0",
"lodash": "^4.17.11",
"log-symbols": "^2.2.0",
"log-update": "^2.1.0",
"node-ipc": "^9.1.0",
"npm-path": "^2.0.4",
"pidusage": "^2.0.6",
"pot-logger": "^0.5.0",
"process-exists": "^3.0.0",
"promise-ws": "^0.4.1",
"respawn": "^2.5.0",
"signal-exit": "^3.0.2",
"slice-file": "^1.0.0",
"yargs": "^11.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.13.2",
"babel-jest": "^21.2.0",
"babel-plugin-transform-es2015-destructuring": "^6.19.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-plugin-transform-es2015-parameters": "^6.18.0",
"babel-polyfill": "^6.13.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.11.6",
"co-body": "^4.2.0",
"cross-env": "^5.0.0",
"eslint": "^4.19.1",
"eslint-config-cantonjs": "^1.0.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.15.1",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.8.2",
"eslint-plugin-standard": "^3.1.0",
"get-my-ip": "0.0.1",
"jest": "^21.2.1",
"kapok-js": "^0.10.1",
"mkdirp": "^0.5.1",
"node-fetch": "^1.7.1",
"node-notifier": "^5.2.1",
"prettier-eslint-cli": "^4.7.1",
"qs": "^6.3.0",
"rimraf": "^2.5.4",
"which": "^1.3.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"modulePathIgnorePatterns": [
"node_modules",
"lib"
]
}
}