-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
60 lines (60 loc) · 1.54 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
55
56
57
58
59
60
{
"name": "node-interval-tree",
"version": "2.1.2",
"description": "Implementation of interval tree data structure.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"engines": {
"node": ">= 14.0.0"
},
"scripts": {
"autotest": "npm run test -- --watch",
"build": "tsc",
"clean": "rimraf lib",
"lint": "eslint --ext .js,.ts ./",
"prepublishOnly": "npm run lint && npm run clean && npm run test && npm run build",
"test": "ts-mocha -R spec test/**.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/ShieldBattery/node-interval-tree"
},
"keywords": [
"interval",
"AVL",
"tree",
"data structure"
],
"author": "Marko Žarković <marko@kastela.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ShieldBattery/node-interval-tree/issues"
},
"homepage": "https://github.com/ShieldBattery/node-interval-tree",
"dependencies": {
"shallowequal": "^1.1.0"
},
"files": [
"lib/index.js",
"lib/index.js.map",
"lib/index.d.ts",
"index.ts"
],
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^10.0.1",
"@types/shallowequal": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"chai": "^4.3.6",
"cuid": "^2.1.8",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-mocha": "^10.0.0",
"typescript": "^4.7.4"
}
}