-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1 KB
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
{
"name": "intervaltree",
"type": "module",
"version": "1.2.0",
"description": "Interval tree for JavaScript",
"author": "Jordan Baker",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npx tsup",
"clean": "rimraf dist",
"prebuild": "rimraf dist",
"prepare": "npm run build",
"prepack": "npm run build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest --no-watch",
"test:watch": "vitest",
"model-check": "vitest run --config vitest.model.config.ts"
},
"devDependencies": {
"@antfu/eslint-config": "^6.4.2",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@vitest/coverage-v8": "^4.0.15",
"eslint": "^9.39.1",
"expect": "^30.2.0",
"fast-check": "^4.3.0",
"pure-rand": "^7.0.1",
"rimraf": "^6.1.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
}
}