forked from CesiumGS/gltf-pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.92 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "gltf-pipeline",
"version": "0.1.0-alpha4",
"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": "git@github.com:AnalyticalGraphicsInc/gltf-pipeline.git"
},
"bugs": {
"url": "https://github.com/AnalyticalGraphicsInc/gltf-pipeline/issues"
},
"main": "index.js",
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"async": "2.0.0-rc.6",
"bluebird": "3.4.1",
"buffer-equal": "1.0.0",
"cesium": "1.23.0",
"clone": "1.0.2",
"data-uri-to-buffer": "0.0.4",
"datauri": "1.0.4",
"fs-extra": "0.30.0",
"image-size": "0.5.0",
"jimp": "0.2.24",
"jsonpath": "0.2.6",
"mime": "1.3.4",
"mkdirp": "0.5.1",
"object-values": "1.0.0",
"promise": "7.1.1",
"underscore": "1.8.3",
"yargs": "4.7.1"
},
"devDependencies": {
"coveralls": "2.11.9",
"gulp": "3.9.1",
"gulp-jshint": "2.0.1",
"istanbul": "0.4.4",
"jasmine": "2.4.1",
"jasmine-spec-reporter": "2.5.0",
"jsdoc": "3.4.0",
"jshint": "2.9.2",
"jshint-stylish": "2.2.0",
"open": "0.0.5",
"request": "2.72.0",
"requirejs": "2.2.0"
},
"scripts": {
"jsdoc": "jsdoc ./lib -R ./README.md -d doc",
"jsHint": "gulp jsHint",
"jsHint-watch": "gulp jsHint-watch",
"test": "gulp test",
"test-watch": "gulp test-watch",
"coverage": "gulp coverage",
"update-ts-definitions": "gulp update-ts-definitions",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"bin": {
"gltf-pipeline": "./bin/gltf-pipeline.js"
}
}