-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 762 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 762 Bytes
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
{
"name": "OSMBuilding",
"version": "1.0.0",
"type": "module",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Beakerboy/OSMBuilding.git"
},
"dependencies": {
"three": "^0.138.3"
},
"devDependencies" : {
"coveralls": "*",
"c8": "*",
"eslint": "^8.13",
"jest": "*",
"jest-environment-jsdom": "*",
"jest-fetch-mock": "*",
"jest-matcher-deep-close-to": "*",
"jsdom": "*",
"hipped": "file:../hipped",
"pyramid": "file:../pyramid",
"ramp": "file:../ramp",
"wedge": "file:../wedge",
"straight-skeleton": "1.1.0"
},
"scripts": {
"test": "c8 jest"
},
"c8": {
"all": true,
"reporter": [
"lcov",
"text-summary"
]
}
}