-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.49 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.49 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
41
42
43
44
45
46
{
"name": "isoline",
"version": "1.0.0",
"description": "JavaScript tool for efficient construction and visualization of isolines",
"dependencies": {
"@turf/turf": "^7.2.0",
"papaparse": "^5.5.3",
"rbush": "^4.0.1"
},
"devDependencies": {
"canvas": "^3.2.0",
"jest": "^29.7.0",
"jsts": "^2.12.1",
"pixelmatch": "^7.1.0",
"simple-statistics": "^7.8.8"
},
"scripts": {
"test": "jest",
"test:all": "jest",
"test:conrec": "jest src/test/unit/conrec.test.js",
"test:conrec:watch": "jest src/test/unit/conrec.test.js --watch",
"test:index": "jest src/test/unit/index.test.js",
"test:index:watch": "jest src/test/unit/index.test.js --watch",
"test:spatial": "jest src/test/unit/spatialIndex.test.js",
"test:spatial:watch": "jest src/test/unit/spatialIndex.test.js --watch",
"test:builder": "jest src/test/unit/isolineBuilder.test.js",
"test:builder:watch": "jest src/test/unit/isolineBuilder.test.js --watch",
"test:tiled": "jest src/test/unit/tiledIsolineBuilder.test.js",
"test:tiled:watch": "jest src/test/unit/tiledIsolineBuilder.test.js --watch",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:verbose": "jest --verbose",
"test:debug": "jest --verbose --no-cache"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.js",
"!src/visualize/**",
"!src/test/unit/*"
],
"testMatch": [
"**/src/test/unit/*.test.js"
]
}
}