-
Notifications
You must be signed in to change notification settings - Fork 154
/
Copy pathpackage.json
48 lines (48 loc) · 1.61 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
{
"name": "javascript-problems-and-solutions",
"version": "2.0.1",
"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",
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
]
},
"scripts": {
"lint": "./node_modules/.bin/eslint ./src",
"mocha": "cross-env NODE_ENV=test ./node_modules/.bin/nyc mocha ./src/**/*$FILE*-test.js",
"mocha-dev": "cross-env NODE_ENV=test ./node_modules/.bin/nyc mocha --watch ./src/**/*$FILE*-test.js",
"test": "npm run lint && npm run mocha",
"test-dev": "npm run lint && npm run mocha-dev",
"coverage": "./node_modules/.bin/nyc report --reporter=text-lcov | coveralls",
"release": "release-it",
"precommit": "lint-staged"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"babel-plugin-istanbul": "^5.0.1",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"cross-env": "^5.2.0",
"eslint": "^5.0.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-prettier": "^2.6.1",
"husky": "^1.0.0-rc.15",
"lint-staged": "^7.2.0",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"prettier": "^1.13.5",
"release-it": "^7.4.7"
}
}