forked from NASA-AMMOS/3DTilesRendererJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.7 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
{
"name": "3d-tiles-renderer",
"version": "0.3.23",
"description": "https://github.com/AnalyticalGraphicsInc/3d-tiles/tree/master/specification",
"keywords": [
"3d-tiles",
"3dtiles",
"graphics",
"b3dm",
"gltf",
"threejs",
"rendering",
"geometry",
"terrain",
"cesium"
],
"type": "module",
"sideEffects": false,
"main": "src/index.js",
"module": "src/index.js",
"files": [
"src/*"
],
"scripts": {
"start": "concurrently \"parcel watch example/*.html --out-dir ./example/dev-bundle/ --public-url . --no-cache\" \"static-server\"",
"build-examples": "parcel build --no-content-hash example/*.html --out-dir ./example/bundle/ --public-url . --no-cache",
"lint": "eslint \"src/**/*.js\" \"test/**/*.js\" \"example/*.js\" && tsc -p tsconfig.json --noEmit",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NASA-AMMOS/3DTilesRendererJS.git"
},
"bugs": {
"url": "https://github.com/NASA-AMMOS/3DTilesRendererJS/issues"
},
"homepage": "https://github.com/NASA-AMMOS/3DTilesRendererJS#readme",
"author": "Garrett Johnson <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@types/three": ">=0.152.0",
"babel-jest": "^29.5.0",
"cesium": "^1.97.0",
"concurrently": "^6.2.1",
"eslint": "^7.10.0",
"eslint-config-mdcs": "^4.2.3",
"eslint-plugin-jest": "^24.1.0",
"jest": "^27.1.1",
"jest-cli": "^27.1.1",
"parcel-bundler": "^1.12.5",
"static-server": "^2.2.1",
"three": "^0.154.0",
"typescript": "^5.1.3"
},
"peerDependencies": {
"three": ">=0.123.0"
}
}