-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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": "algorithm",
"version": "1.0.0",
"description": "javascript algorithm",
"keywords": [
"javascript",
"algorithm"
],
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "jest --watch --verbose --colors --no-cache --forceExit",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"test:ci": "jest --coverage --no-cache --coverage --ci",
"ci": "npm run lint && npm run test:ci && npm run coveralls"
},
"author": "[email protected]",
"license": "MIT",
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"engines": {},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "^1.3.2",
"babel-preset-stage-2": "^6.22.0",
"codecov": "^3.1.0",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"eslint": "^4.10.0",
"jest": "^23.6.0",
"regenerator-runtime": "^0.13.1",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^3.10.0"
}
}