-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.93 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "intervaltree",
"version": "0.1.0",
"description": "Interval tree for JavaScript",
"author": "Jordan Baker",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"install": "tsc --declaration || true",
"build": "tsc --declaration || true",
"prebuild": "rimraf dist",
"test": "jest",
"test:ci": "jest --ci --testResultsProcessor='jest-junit' --coverage",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"coverage:watch": "jest --coverage --watch",
"coverage:open": "open coverage/lcov-report/index.html",
"clean": "rimraf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexsprite/intervaltree.git"
},
"keywords": [
"typescript",
"library",
"intervaltree",
"tree"
],
"bugs": {
"url": "https://github.com/hexsprite/intervaltree/issues"
},
"homepage": "https://github.com/hexsprite/intervaltree",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@rimbu/core": "^1.1.3",
"@types/lodash": "^4.14.202",
"assert": "^2.1.0",
"debug": "^4.3.4",
"lodash": "^4.17.21",
"ts-node": "^10.9.2"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/**/*.d.ts"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"text",
"cobertura",
"lcov"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"testRegex": ".*\\.(test|spec)\\.(ts)$",
"testEnvironment": "node",
"transform": {
".(ts|tsx)": "ts-jest"
}
}
}