-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.37 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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "tree-range-set",
"version": "1.0.4",
"description": "A RangeSet implementation based on binary search trees",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist",
"build": "tsc --build tsconfig.build.json",
"build:perf": "tsc --build tsconfig.perf.json",
"perf": "npm run build:perf && node dist/range-set.perf.js",
"doc": "typedoc --tsconfig tsconfig.build.json src/index.ts",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jtalk/tree-range-set.git"
},
"keywords": [
"range",
"set",
"range set"
],
"author": {
"name": "Roman Nazarenko",
"email": "[email protected]",
"url": "https://jtalk.me"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Jtalk/tree-range-set/issues"
},
"homepage": "https://github.com/Jtalk/tree-range-set#readme",
"devDependencies": {
"@types/benchmark": "^1.0.33",
"@types/bintrees": "^1.0.2",
"@types/jest": "^26.0.20",
"benchmark": "^2.1.4",
"bintrees": "^1.0.2",
"drange": "^2.0.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"range-set": "^0.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typedoc": "^0.20.36",
"typescript": "^3.9.7"
},
"peerDependencies": {
"bintrees": "^1.0.2"
}
}