-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 943 Bytes
/
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
44
45
46
47
{
"name": "binstree",
"version": "1.2.0",
"description": "Binary search trees for ES6",
"license": "MIT",
"repository": "klaussinani/binstree",
"author": {
"name": "Klaus Sinani",
"email": "klaussinani@gmail.com",
"url": "https://klaussinani.github.io"
},
"engines": {
"node": ">=6"
},
"types": "types/binstree.d.ts",
"files": [
"src",
"types",
"index.js"
],
"keywords": [
"binary",
"search",
"tree",
"es6",
"data",
"structure",
"typescript"
],
"scripts": {
"lint": "xo",
"test:ts": "tsc --noEmit -p test/types",
"test:js": "npm run lint && nyc ava",
"test": "npm run test:ts && npm run test:js",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"devDependencies": {
"ava": "2.3.0",
"coveralls": "^3.0.3",
"nyc": "^13.3.0",
"typescript": "^3.5.3",
"xo": "^0.24.0"
},
"xo": {
"space": 2
}
}