forked from ProtonMail/interval-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.07 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
{
"name": "interval-tree",
"version": "1.0.0",
"description": "Red-black interval tree",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"preversion": "./preversion.sh",
"postversion": "./postversion.sh",
"build": "tsc",
"test": "npm run build && node -r esm ./node_modules/.bin/jasmine --config=jasmine.json",
"lint": "eslint src --ext .ts --quiet",
"coverage": "nyc -r text -e .ts -x \"tests/*.test.ts\" npm run test"
},
"keywords": [],
"author": "ProtonMail",
"license": "ISC",
"devDependencies": {
"@types/jasmine": "^3.4.4",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"eslint": "^6.6.0",
"esm": "^3.2.25",
"jasmine": "^3.5.0",
"nyc": "^14.1.1",
"rollup": "^1.2.1",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.19.2",
"ts-node": "^8.4.1",
"typescript": "^3.6.4"
}
}