-
Notifications
You must be signed in to change notification settings - Fork 121
/
Copy pathpackage.json
36 lines (36 loc) · 1.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
{
"name": "javascript-problems-and-solutions",
"version": "1.2.5",
"description": "A collection of JavaScript problems and solutions for studying algorithms.",
"main": "index.js",
"repository": "https://github.com/jeantimex/javascript-problems-and-solutions.git",
"author": "Yong Su <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint src",
"mocha": "cross-env NODE_ENV=test nyc mocha src/**/*-test.js",
"test": "npm run lint && npm run mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"release": "node ./release.js"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"cross-env": "^5.0.5",
"eslint": "^4.8.0",
"eslint-plugin-prettier": "^2.3.1",
"inquirer": "^3.3.0",
"mocha": "^4.0.1",
"nyc": "^11.2.1",
"prettier": "^1.7.4"
}
}