-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.19 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
{
"name": "@awayjs/parsers",
"version": "0.8.3",
"description": "Parsers for AwayJS",
"main": "bundle/awayjs-parsers.umd.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"url": "http://www.away3d.com",
"author": "Rob Bateman",
"repository": {
"type": "git",
"url": "git+https://github.com/awayjs/parsers.git"
},
"scripts": {
"rimraf": "rimraf",
"rollup": "rollup -c",
"uglifyjs": "uglifyjs ./bundle/awayjs-parsers.umd.js -o ./bundle/awayjs-parsers.umd.min.js --in-source-map ./bundle/awayjs-parsers.umd.js.map --source-map --output ./bundle/awayjs-parsers.umd.min.js.map --mangle",
"tsc": "tsc --lib ES2015.Symbol,DOM,ScriptHost,ES5,ES2015.Iterable",
"clean": "npm cache clean && npm run rimraf -- node_modules dist bundle",
"clean:dist": "npm run rimraf -- dist bundle",
"watch": "npm run tsc -- --w",
"prebuild": "npm run clean:dist",
"build": "npm run tsc && npm run rollup && npm run uglifyjs",
"copyVersionToIndex": "node ./copyVersionToIndex && git add ./index.ts && git commit -m \"update version number in index.ts\"",
"version": "npm run copyVersionToIndex && npm run build",
"postversion": "git push && git push --tags && npm publish"
},
"keywords": [
"AwayJS",
"WebGL",
"2D",
"3D",
"graphics"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/awayjs/parsers/issues"
},
"homepage": "https://github.com/awayjs/parsers#readme",
"dependencies": {
"opentype.js": "^0.11.0"
},
"peerDependencies": {
"@awayjs/core": "^0.9.0",
"@awayjs/graphics": "^0.5.0",
"@awayjs/materials": "^0.6.0",
"@awayjs/renderer": "^0.11.0",
"@awayjs/scene": "^0.13.0",
"@awayjs/stage": "^0.11.0",
"@awayjs/view": "^0.6.0",
"tslib": "^1.9.0"
},
"devDependencies": {
"@awayjs/core": "^0.9.0",
"@awayjs/graphics": "^0.5.0",
"@awayjs/materials": "^0.6.0",
"@awayjs/renderer": "^0.11.0",
"@awayjs/scene": "^0.13.0",
"@awayjs/stage": "^0.11.0",
"@awayjs/view": "^0.6.0",
"tslib": "^1.9.0",
"rimraf": "^2.5.2",
"rollup": "^0.36.4",
"rollup-plugin-includepaths": "^0.2.1",
"typescript": "^3.7.3",
"uglify-js": "^3.0.15"
}
}