forked from CesiumGS/gltf-pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.82 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
{
"name": "gltf-pipeline",
"version": "1.0.2",
"description": "Content pipeline tools for optimizing glTF assets.",
"license": "Apache-2.0",
"contributors": [
{
"name": "Richard Lee, Analytical Graphics, Inc., and Contributors",
"url": "https://github.com/AnalyticalGraphicsInc/gltf-pipeline/graphs/contributors"
}
],
"keywords": [
"glTF",
"WebGL"
],
"homepage": "https://github.com/AnalyticalGraphicsInc/gltf-pipeline",
"repository": {
"type": "git",
"url": "[email protected]:AnalyticalGraphicsInc/gltf-pipeline.git"
},
"bugs": {
"url": "https://github.com/AnalyticalGraphicsInc/gltf-pipeline/issues"
},
"main": "index.js",
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"bluebird": "^3.5.1",
"cesium": "^1.39.0",
"clone": "^2.1.1",
"data-uri-to-buffer": "^2.0.0",
"deep-equal": "^1.0.1",
"fs-extra": "^4.0.2",
"image-size": "^0.6.1",
"jimp": "^0.2.28",
"jsonpath": "^1.0.0",
"mime": "^2.0.3",
"uuid": "^3.1.0",
"yargs": "^10.0.3"
},
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^4.10.0",
"eslint-config-cesium": "^2.0.1",
"gulp": "^3.9.1",
"jasmine": "^2.8.0",
"jasmine-spec-reporter": "^4.2.1",
"jsdoc": "^3.5.5",
"nyc": "^11.3.0",
"open": "^0.0.5",
"requirejs": "^2.3.5"
},
"scripts": {
"build-cesium": "gulp build-cesium",
"build-cesium-combine": "gulp build-cesium-combine",
"jsdoc": "jsdoc ./lib -R ./README.md -d doc",
"eslint": "eslint \"./**/*.js\" --cache --quiet",
"eslint-watch": "gulp eslint-watch",
"test": "gulp test",
"test-watch": "gulp test-watch",
"coverage": "gulp coverage",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"bin": {
"gltf-pipeline": "./bin/gltf-pipeline.js"
}
}