-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.96 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
71
72
73
74
75
76
{
"name": "gltf-pipeline",
"version": "3.0.4",
"description": "Content pipeline tools for optimizing glTF assets.",
"license": "Apache-2.0",
"contributors": [
{
"name": "Richard Lee, Cesium GS, Inc., and Contributors",
"url": "https://github.com/CesiumGS/gltf-pipeline/graphs/contributors"
}
],
"keywords": [
"glTF",
"WebGL"
],
"homepage": "https://github.com/CesiumGS/gltf-pipeline",
"repository": {
"type": "git",
"url": "[email protected]:CesiumGS/gltf-pipeline.git"
},
"bugs": {
"url": "https://github.com/CesiumGS/gltf-pipeline/issues"
},
"main": "index.js",
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"bluebird": "^3.7.2",
"cesium": "^1.86.1",
"draco3d": "^1.4.3",
"fs-extra": "^10.0.0",
"mime": "^2.5.2",
"object-hash": "^2.2.0",
"yargs": "^17.2.1"
},
"devDependencies": {
"cloc": "^2.8.0",
"coveralls": "^3.1.1",
"dependency-tree": "^8.1.2",
"eslint": "^8.0.1",
"eslint-config-cesium": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"gulp": "^4.0.2",
"husky": "^4.3.8",
"jasmine": "^3.10.0",
"jasmine-spec-reporter": "^7.0.0",
"jsdoc": "^3.6.7",
"nyc": "^15.1.0",
"open": "^8.3.0",
"prettier": "2.3.2",
"pretty-quick": "^3.1.1"
},
"husky": {
"hooks": {
"pre-commit": "eslint && pretty-quick --staged"
}
},
"scripts": {
"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",
"cloc": "gulp cloc",
"prettier": "prettier --write \"**/*\"",
"prettier-check": "prettier --check \"**/*\"",
"pretty-quick": "pretty-quick",
"build-cesium": "gulp build-cesium"
},
"bin": {
"gltf-pipeline": "./bin/gltf-pipeline.js"
}
}