forked from CesiumGS/gltf-pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.06 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
77
78
79
{
"name": "gltf-pipeline",
"version": "4.1.0",
"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": ">=16.0.0"
},
"dependencies": {
"bluebird": "^3.7.2",
"cesium": "^1.86.1",
"draco3d": "^1.4.3",
"fs-extra": "^11.0.0",
"mime": "^3.0.0",
"object-hash": "^3.0.0",
"yargs": "^17.2.1"
},
"devDependencies": {
"cloc": "^2.8.0",
"dependency-tree": "^10.0.9",
"eslint": "^8.0.1",
"eslint-config-cesium": "^10.0.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-n": "^16.1.0",
"gulp": "^4.0.2",
"husky": "^8.0.3",
"jasmine": "^5.0.0",
"jasmine-spec-reporter": "^7.0.0",
"jsdoc": "^4.0.0",
"nyc": "^15.1.0",
"prettier": "3.0.3",
"lint-staged": "^15.0.2"
},
"lint-staged": {
"*.(js|ts)": [
"eslint --cache --quiet --fix",
"prettier --write"
],
"*.!(js|ts)": "prettier --write"
},
"scripts": {
"prepare": "husky install",
"pre-commit": "lint-staged",
"jsdoc": "jsdoc ./lib -R ./README.md -d doc",
"eslint-fix": "eslint \"./**/*.js\" --fix",
"eslint": "eslint \"./**/*.js\" --cache --quiet",
"eslint-watch": "gulp eslint-watch",
"test": "gulp test",
"test-watch": "gulp test-watch",
"coverage": "gulp coverage",
"cloc": "gulp cloc",
"prettier": "prettier --write \"**/*\"",
"prettier-check": "prettier --check \"**/*\"",
"build-cesium": "gulp build-cesium",
"generate-third-party": "gulp generate-third-party"
},
"bin": {
"gltf-pipeline": "./bin/gltf-pipeline.js"
}
}