-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.52 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "process-custodian",
"version": "0.5.3",
"description": "This package helps with organizing of tasks between few instances of same app, It can identify processes and track them activity.",
"main": "index.js",
"scripts": {
"prepublish": ". ./scripts/prepublish.sh",
"watch": ". ./scripts/watch.sh",
"lint": "eslint ./src",
"lintfix": "eslint ./src --fix",
"testonly": "mocha $npm_package_options_mocha",
"test": "npm run lint && npm run testonly",
"test-watch": "npm run testonly -- --watch --watch-extensions js"
},
"repository": {
"type": "git",
"url": "https://github.com/vazco/process-custodian"
},
"author": "Krzysztof Rozalski ([email protected])",
"license": "MIT",
"homepage": "https://github.com/vazco/process-custodian#readme",
"options": {
"mocha": "--require scripts/mocha_runner src/**/__tests__/**/*.js"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"eslint": "^4.18.2",
"eslint-config-vazco": "^2.1.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-react": "^6.7.1",
"eslint-plugin-vazco": "^1.0.0",
"mocha": "4.x.x",
"nodemon": "1.7.x",
"pre-commit": "^1.1.3",
"sinon": "^3.2.1"
},
"dependencies": {
"babel-runtime": "^6.26.0"
}
}