-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"name": "js-ds",
"version": "0.0.0",
"description": "data-structure implementations in javascript",
"main": "index.js",
"scripts": {
"test": "xo && nyc --reporter=lcov --reporter=text --exclude lib/**/test.js mocha lib/**/test.js",
"check-coverage": "nyc check-coverage --statement 100 --branches 100 --function 100 --lines 100",
"report-coverage": "cat ./coverage/lcov.info | codecov"
},
"repository": {
"type": "git",
"url": "[email protected]:sarbbottam/js-ds.git"
},
"keywords": [
"data-structure",
"javascript"
],
"author": "Sarbbottam Bandyopadhyay <[email protected]> (https://sarbbottam.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sarbbottam/js-ds/issues"
},
"homepage": "https://github.com/sarbbottam/js-ds",
"devDependencies": {
"chai": "^3.5.0",
"chai-sorted": "^0.1.0",
"codecov.io": "^0.1.7",
"mocha": "^3.0.1",
"nyc": "^8.3.2",
"xo": "^0.17.0"
},
"xo": {
"envs": [
"mocha"
],
"esnext": true,
"space": true,
"rules": {
"linebreak-style": 0
}
}
}