-
Notifications
You must be signed in to change notification settings - Fork 157
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.49 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.49 KB
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
{
"name": "javascript-problems-and-solutions",
"version": "3.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 <jean.timex@gmail.com>",
"license": "MIT",
"lint-staged": {
"*.{js,json,md}": [
"prettier --write"
]
},
"scripts": {
"lint": "eslint ./src",
"mocha": "cross-env NODE_ENV=test nyc mocha ./src/**/*$FILE*-test.js",
"mocha-dev": "cross-env NODE_ENV=test nyc mocha --watch ./src/**/*$FILE*-test.js",
"test": "npm run lint && npm run mocha",
"test-dev": "npm run lint && npm run mocha-dev",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"release": "release-it",
"prepare": "husky"
},
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.5",
"@babel/eslint-parser": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/register": "^7.28.3",
"babel-plugin-istanbul": "^7.0.0",
"babel-plugin-module-resolver": "^5.0.2",
"chai": "^4.5.0",
"core-js": "^3.47.0",
"coveralls-next": "^6.0.1",
"cross-env": "^10.1.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"mocha": "^11.7.5",
"nyc": "^17.1.0",
"prettier": "^3.7.4",
"regenerator-runtime": "^0.14.1",
"release-it": "^19.2.2"
}
}