2015-10-16 17:32:23 -04:00
|
|
|
{
|
2016-06-09 13:33:08 -04:00
|
|
|
"name": "obj2gltf",
|
2023-01-25 16:31:31 -05:00
|
|
|
"version": "3.1.5",
|
2016-06-09 13:33:08 -04:00
|
|
|
"description": "Convert OBJ model format to glTF",
|
|
|
|
"license": "Apache-2.0",
|
2016-07-08 18:10:18 -04:00
|
|
|
"contributors": [
|
|
|
|
{
|
2020-02-18 10:06:04 -05:00
|
|
|
"name": "Cesium GS, Inc. and Contributors",
|
|
|
|
"url": "https://github.com/CesiumGS/obj2gltf/graphs/contributors"
|
2016-07-08 18:10:18 -04:00
|
|
|
}
|
|
|
|
],
|
2016-06-09 13:33:08 -04:00
|
|
|
"keywords": [
|
|
|
|
"obj",
|
|
|
|
"gltf"
|
|
|
|
],
|
2020-02-18 10:06:04 -05:00
|
|
|
"homepage": "https://github.com/CesiumGS/obj2gltf",
|
2016-06-09 13:33:08 -04:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2020-02-18 10:06:04 -05:00
|
|
|
"url": "git@github.com:CesiumGS/obj2gltf.git"
|
2016-06-09 13:33:08 -04:00
|
|
|
},
|
|
|
|
"bugs": {
|
2020-02-18 10:06:04 -05:00
|
|
|
"url": "https://github.com/CesiumGS/obj2gltf/issues"
|
2016-06-09 13:33:08 -04:00
|
|
|
},
|
2016-07-08 18:10:18 -04:00
|
|
|
"main": "index.js",
|
2016-07-05 09:48:38 -04:00
|
|
|
"engines": {
|
2023-01-27 08:44:45 -05:00
|
|
|
"node": ">=14.0.0"
|
2016-07-05 09:48:38 -04:00
|
|
|
},
|
2016-06-09 13:33:08 -04:00
|
|
|
"dependencies": {
|
2020-02-04 10:11:42 -05:00
|
|
|
"bluebird": "^3.7.2",
|
2021-10-15 14:56:10 -04:00
|
|
|
"cesium": "^1.86.1",
|
2023-02-10 13:15:01 -05:00
|
|
|
"fs-extra": "^11.0.0",
|
2021-07-22 19:39:07 -04:00
|
|
|
"jpeg-js": "^0.4.3",
|
2023-02-10 13:19:29 -05:00
|
|
|
"mime": "^3.0.0",
|
2021-07-22 19:39:07 -04:00
|
|
|
"pngjs": "^6.0.0",
|
2021-10-15 14:56:10 -04:00
|
|
|
"yargs": "^17.2.1"
|
2016-06-09 13:33:08 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-07-22 19:39:07 -04:00
|
|
|
"cloc": "^2.8.0",
|
|
|
|
"coveralls": "^3.1.1",
|
2021-10-15 14:56:10 -04:00
|
|
|
"eslint": "^8.0.1",
|
2022-07-06 15:02:20 -04:00
|
|
|
"eslint-config-cesium": "^9.0.0",
|
2021-08-02 09:42:20 -04:00
|
|
|
"eslint-config-prettier": "^8.3.0",
|
2022-05-25 10:18:31 -04:00
|
|
|
"eslint-plugin-node": "^11.1.0",
|
2019-06-22 06:54:09 -04:00
|
|
|
"gulp": "^4.0.2",
|
2023-02-10 13:28:20 -05:00
|
|
|
"husky": "^8.0.3",
|
2023-02-10 13:17:47 -05:00
|
|
|
"jasmine": "^4.5.0",
|
2021-07-22 19:39:07 -04:00
|
|
|
"jasmine-spec-reporter": "^7.0.0",
|
2023-02-10 13:18:35 -05:00
|
|
|
"jsdoc": "^4.0.0",
|
2020-07-27 13:29:52 -04:00
|
|
|
"nyc": "^15.1.0",
|
2021-10-15 14:56:10 -04:00
|
|
|
"open": "^8.3.0",
|
2023-02-10 13:20:26 -05:00
|
|
|
"prettier": "2.8.4",
|
2021-08-02 09:42:20 -04:00
|
|
|
"pretty-quick": "^3.1.1"
|
|
|
|
},
|
2021-08-02 11:34:02 -04:00
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
2023-02-10 13:28:20 -05:00
|
|
|
|
2021-08-02 11:34:02 -04:00
|
|
|
}
|
|
|
|
},
|
2016-07-08 18:10:18 -04:00
|
|
|
"scripts": {
|
2023-02-10 13:28:20 -05:00
|
|
|
"prepare": "husky install",
|
|
|
|
"pre-commit": "eslint && pretty-quick --staged",
|
2017-01-03 21:37:15 -05:00
|
|
|
"jsdoc": "jsdoc ./lib -R ./README.md -d doc",
|
2017-06-23 13:42:34 -04:00
|
|
|
"eslint": "eslint \"./**/*.js\" --cache --quiet",
|
2016-07-08 18:10:18 -04:00
|
|
|
"test": "gulp test",
|
|
|
|
"test-watch": "gulp test-watch",
|
2017-01-03 21:37:15 -05:00
|
|
|
"coverage": "gulp coverage",
|
2018-01-29 16:50:56 -05:00
|
|
|
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
|
2021-08-02 09:42:20 -04:00
|
|
|
"cloc": "gulp cloc",
|
|
|
|
"prettier": "prettier --write \"**/*\"",
|
|
|
|
"prettier-check": "prettier --check \"**/*\"",
|
2022-05-06 18:44:59 -04:00
|
|
|
"pretty-quick": "pretty-quick",
|
|
|
|
"generate-third-party": "gulp generate-third-party"
|
2016-07-08 18:10:18 -04:00
|
|
|
},
|
|
|
|
"bin": {
|
|
|
|
"obj2gltf": "./bin/obj2gltf.js"
|
2016-06-09 13:33:08 -04:00
|
|
|
}
|
2015-10-16 17:32:23 -04:00
|
|
|
}
|