-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·69 lines (69 loc) · 2.16 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "eval-script",
"main": "lib/index.js",
"author": "Bowen <supderdev@outlook.com.au>",
"license": "MIT",
"version": "1.0.0",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-loader": "^6.2.10",
"babel-plugin-__coverage__": "^11.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es2015-modules-umd": "^6.18.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"babel-register": "^6.18.0",
"babili": "^0.0.9",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"commitizen": "^2.9.2",
"cz-conventional-changelog": "^1.2.0",
"ghooks": "^2.0.0",
"karma": "^1.3.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-ie-launcher": "1.0.0",
"karma-mocha": "^1.3.0",
"karma-safari-launcher": "1.0.0",
"karma-webpack": "^1.8.1",
"mocha": "^3.2.0",
"npm-run-all": "^3.1.2",
"nyc": "^10.0.0",
"rimraf": "^2.5.4",
"semantic-release": "^6.3.2",
"webpack": "^1.14.0",
"webpack-validator": "^2.3.0"
},
"files": [
"lib",
"README.md"
],
"scripts": {
"commit": "git-cz",
"check-coverage": "nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"test:js": "babel-node ./test/test.js",
"test": "karma start",
"watch": "npm run test:karma -- --auto-watch --no-single-run",
"cover": "nyc npm t",
"prebuild": "rimraf lib",
"build": "npm-run-all --parallel build:*",
"build:main": "babel --copy-files --out-dir lib --ignore *.test.js src",
"build:umd.min": "babel src/index.js --out-file lib/index.min.js --presets=babili",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/bowen31337/evalScript.git"
}
}