-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 728 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 728 Bytes
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
{
"name": "javascript-datastructures-algorithms",
"description": "JavaScript 版数据结构与算法",
"version": "1.0.0",
"devDependencies": {
"codecov": "^1.0.1",
"jest": "^18.1.0"
},
"scripts": {
"test": "jest",
"test:cov": "jest && codecov"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/lewis617/javascript-datastructures-algorithms.git"
},
"author": "lewis617",
"license": "ISC",
"bugs": {
"url": "https://github.com/lewis617/javascript-datastructures-algorithms/issues"
},
"homepage": "https://github.com/lewis617/javascript-datastructures-algorithms#readme"
}