forked from najadojo/gltf-import-export
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 916 Bytes
/
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
{
"name": "gltf-import-export",
"version": "1.0.16",
"description": "Convert between GLB and GLTF files",
"main": "dist/index.js",
"bin": "dist/tool.js",
"typings": "dist/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/najadojo/gltf-import-export.git"
},
"keywords": [
"GLTF",
"GLB",
"convert",
"import",
"export"
],
"author": "Jamie Marconi",
"license": "MIT",
"bugs": {
"url": "https://github.com/najadojo/gltf-import-export/issues"
},
"homepage": "https://github.com/najadojo/gltf-import-export#readme",
"dependencies": {
"yargs": "^11.1.0"
},
"devDependencies": {
"@types/node": "^7.10.9",
"@types/yargs": "^11.1.3",
"tslint": "^5.20.1",
"typescript": "^2.9.2"
}
}