-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 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
{
"name": "javascript-datastructure-algorithm",
"version": "1.0.0",
"description": "JavaScript Data Structure and Algorithm",
"scripts": {
"test": "mocha ./test --recursive --reporter mochawesome",
"coverage": "npm run generate-report && nyc report --reporter=text-lcov > coverage.lcov && codecov",
"generate-report": "nyc --report-dir coverage npm run test && nyc report --reporter=text",
"lint": "eslint ./src && eslint ./test",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/gookyn/javascript-datastructure-algorithm.git"
},
"keywords": [
"JavaScript",
"DataStructure",
"Algorithm"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gookyn/javascript-datastructure-algorithm/issues"
},
"homepage": "https://github.com/gookyn/javascript-datastructure-algorithm#readme",
"devDependencies": {
"chai": "^4.3.7",
"codecov": "^3.8.3",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.1.0",
"mochawesome": "^7.1.3",
"nyc": "^15.1.0",
"prettier": "2.8.0"
}
}