-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 743 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 743 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": "algorithm-in-js",
"version": "0.0.1",
"description": "common algorithm implemented by js",
"main": "index.js",
"scripts": {
"test": "nyc --reporter text --reporter html mocha",
"test:watch": "npm test -- watch",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yeluoqiuzhi/algorithm-in-js.git"
},
"author": "yeluoqiuzhi",
"license": "MIT",
"bugs": {
"url": "https://github.com/yeluoqiuzhi/algorithm-in-js/issues"
},
"homepage": "https://github.com/yeluoqiuzhi/algorithm-in-js#readme",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.13.1",
"mocha": "^3.4.1",
"nyc": "^10.3.2"
}
}