-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 1.01 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
{
"name": "flow-engine",
"version": "0.0.1",
"scripts": {
"example_simple": "./build/cli.js --rules=./examples/01_simple/rules.json --tasks=./examples/01_simple/input.json",
"example_cycle": "./build/cli.js --rules=./examples/02_cycle/rules.json --tasks=./examples/02_cycle/input.json",
"build": "./node_modules/babel-cli/bin/babel.js src/ --out-dir build/ && chmod +x ./build/cli.js",
"test": "./node_modules/mocha/bin/mocha --watch --compilers js:babel-register test",
"lint": "./node_modules/eslint/bin/eslint.js ./src ./test",
"postinstall": "npm run build"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"eslint": "^3.2.2",
"eslint-config-airbnb-base": "^5.0.3",
"eslint-plugin-import": "^1.14.0",
"mocha": "^2.5.3",
"sinon": "^1.17.5"
},
"dependencies": {
"yargs": "^5.0.0"
}
}