forked from CesiumGS/3d-tiles-validator
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 1.86 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
{
"name": "3d-tiles-samples-generator",
"version": "0.1.0",
"license": "Apache-2.0",
"description": "Tools for generating sample 3D Tiles tilesets.",
"author": {
"name": "Cesium GS, Inc. and Contributors",
"url": "https://github.com/CesiumGS/3d-tiles-validator/graphs/contributors"
},
"keywords": [
"3D Tiles"
],
"homepage": "https://github.com/CesiumGS/3d-tiles-validator",
"repository": {
"type": "git",
"url": "https://github.com/CesiumGS/3d-tiles-validator.git"
},
"bugs": {
"url": "https://github.com/CesiumGS/3d-tiles-validator/issues"
},
"main": "index.js",
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"@types/bluebird": "^3.5.32",
"@types/jasmine": "^3.5.11",
"@types/node": "^14.0.24",
"bluebird": "^3.7.2",
"cesium": "^1.71.0",
"draco3d": "1.3.6",
"fs-extra": "^9.0.1",
"gltf-pipeline": "^3.0.1",
"mime": "^2.4.6",
"simplex-noise": "^2.4.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.5",
"cloc": "^2.5.1",
"copyfiles": "^2.3.0",
"datauri": "^3.0.0",
"del-cli": "^3.0.1",
"eslint": "^7.5.0",
"eslint-config-cesium": "^8.0.1",
"gulp": "^4.0.2",
"jasmine": "^3.5.0",
"jasmine-spec-reporter": "^5.0.2",
"jest": "^26.1.0",
"nyc": "^15.1.0",
"open": "^7.1.0",
"ts-jest": "^26.1.3",
"typescript": "^3.9.7",
"yargs": "^15.4.1"
},
"scripts": {
"prebuild": "del-cli dist",
"build": "tsc",
"postbuild": "copyfiles -u \"lib/**/*\" \"specs/**/*\" \"data/**/*\" -e '*.js' -e '*.ts' dist",
"watch": "tsc -w",
"eslint": "eslint \"./**/*.js\" --cache --quiet",
"test": "jest",
"test-watch": "npx jest --watch",
"coverage": "npx jest --coverage",
"cloc": "gulp cloc"
},
"bin": {
"3d-tiles-samples-generator": "./bin/3d-tiles-samples-generator"
}
}