forked from CesiumGS/obj2gltf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.52 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
{
"name": "obj2gltf",
"version": "3.0.2",
"description": "Convert OBJ model format to glTF",
"license": "Apache-2.0",
"contributors": [
{
"name": "Analytical Graphics, Inc. and Contributors",
"url": "https://github.com/AnalyticalGraphicsInc/obj2gltf/graphs/contributors"
}
],
"keywords": [
"obj",
"gltf"
],
"homepage": "https://github.com/AnalyticalGraphicsInc/obj2gltf",
"repository": {
"type": "git",
"url": "[email protected]:AnalyticalGraphicsInc/obj2gltf.git"
},
"bugs": {
"url": "https://github.com/AnalyticalGraphicsInc/obj2gltf/issues"
},
"main": "index.js",
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"bluebird": "^3.5.3",
"cesium": "^1.55.0",
"fs-extra": "^8.0.0",
"jpeg-js": "^0.3.4",
"mime": "^2.4.0",
"pngjs": "^3.3.3",
"yargs": "^13.2.2"
},
"devDependencies": {
"cloc": "^2.4.0",
"coveralls": "^3.0.3",
"eslint": "^5.15.1",
"eslint-config-cesium": "^7.0.0",
"gulp": "^4.0.0",
"jasmine": "^3.3.1",
"jasmine-spec-reporter": "^4.2.1",
"jsdoc": "^3.5.5",
"nyc": "^14.0.0",
"open": "^6.0.0",
"requirejs": "^2.3.6"
},
"scripts": {
"jsdoc": "jsdoc ./lib -R ./README.md -d doc",
"eslint": "eslint \"./**/*.js\" --cache --quiet",
"test": "gulp test",
"test-watch": "gulp test-watch",
"coverage": "gulp coverage",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"cloc": "gulp cloc"
},
"bin": {
"obj2gltf": "./bin/obj2gltf.js"
}
}