-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.17 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
{
"name": "execute-js",
"version": "0.34.1",
"description": "Application workflow executor for JavaScript",
"main": "lib/execute-js.min.js",
"scripts": {
"build": "webpack",
"dev": "webpack --config webpack.dev.js --progress --colors --watch",
"test": "lab -e qa -P test -l",
"coverage": "lab -e qa -P test -l -r html -o ./coverage/index.html",
"eslint": "eslint ./ --config .eslintrc",
"test-with-coverage": "lab -r lcov | ./node_modules/.bin/coveralls"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "8.0.1",
"babel-loader": "7.1.2",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"code": "^5.2.0",
"coveralls": "^3.0.0",
"eslint": "4.10.0",
"eslint-loader": "1.9.0",
"lab": "^15.4.5",
"pre-commit": "^1.2.2",
"sinon": "^7.2.2",
"webpack": "^3.8.1"
},
"repository": {
"type": "git",
"url": "https://github.com/ParidelPooya/execute-js"
},
"pre-commit": [
"eslint",
"test"
],
"author": "Pooya Paridel",
"license": "MIT",
"dependencies": {}
}