-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
65 lines (65 loc) · 2.48 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
{
"name": "gltf-loader-ts",
"version": "0.3.1",
"license": "MIT",
"description": "Engine-agnostic glTF 2.0 loader in TypeScript",
"author": "",
"homepage": "https://github.com/bwasty/gltf-loader-ts",
"repository": {
"type": "git",
"url": "https://github.com/bwasty/gltf-loader-ts.git"
},
"main": "./lib/gltf-loader.js",
"types": "./lib/gltf-loader.d.ts",
"devDependencies": {
"@types/chai": "~4.1.3",
"@types/chai-spies": "~0.0.1",
"@types/mocha": "~5.2.1",
"chai": "~4.1.2",
"chai-spies": "~1.0.0",
"codecov": "~3.0.2",
"cross-env": "~5.1.6",
"gh-pages": "~1.2.0",
"gltf-typescript-generator": "~0.0.3",
"mocha": "~5.2.0",
"mocha-junit-reporter": "~1.17.0",
"mocha-multi-reporters": "~1.1.7",
"nyc": "~12.0.2",
"simple-dropzone": "~0.5.3",
"ts-loader": "~4.4.1",
"ts-node": "~5.0.1",
"tslint": "~5.10.0",
"typedoc": "~0.11.1",
"typescript": "~2.9.1",
"webpack": "~4.12.0",
"webpack-bundle-analyzer": "~2.13.1",
"webpack-cli": "~3.0.3",
"xhr2": "~0.1.4"
},
"dependencies": {},
"peerDependencies": {},
"scripts": {
"build": "webpack --mode development",
"build-watch": "webpack --watch --mode development",
"build-dist": "webpack --config webpack.config.dist.js --mode production",
"build-lib": "webpack --config webpack.config.lib.js --mode production",
"check": "tslint --project tsconfig.json --force --format stylish --config tslint.json",
"analyze": "cross-env ANALYZE=true npm run build-lib",
"test": "nyc mocha",
"test-watch": "mocha --watch",
"codecov": "codecov",
"doc": "typedoc --hideGenerator --readme README.md --target ES6 --module commonjs --includeDeclarations --excludeExternals --mode file --out dist/doc/ source/",
"generate-interface": "gltf-typescript-generator source/gltf.ts https://raw.githubusercontent.com/KhronosGroup/glTF/master/specification/2.0/schema/glTF.schema.json",
"upload-docs": "gh-pages -d dist/doc",
"prepack": "rm -rf dist && rm -rf lib && npm install && npm run build-dist && npm run build-lib",
"postversion": "git push && git push --tags",
"release": "npm publish && npm run doc && npm run upload-docs"
},
"keywords": [
"glTF",
"gltf",
"WebGL",
"webgl",
"3d"
]
}