-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.03 KB
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
{
"name": "@as3web/flash",
"version": "0.1.119",
"description": "Typescript classes mimicing the functionality of the flash package in AS3",
"main": "bundle/as3web-flash.umd.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"url": "http://www.as3web.com",
"author": "Rob Bateman",
"repository": {
"type": "git",
"url": "git+https://github.com/as3web/flash.git"
},
"scripts": {
"rimraf": "rimraf",
"rollup": "rollup -c",
"uglifyjs": "uglifyjs ./bundle/as3web-flash.umd.js -o ./bundle/as3web-flash.umd.min.js --in-source-map ./bundle/as3web-flash.umd.js.map --source-map --output ./bundle/as3web-flash.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",
"version": "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/as3web/flash/issues"
},
"homepage": "https://github.com/as3web/flash#readme",
"peerDependencies": {
"@awayjs/core": "^0.8.0",
"@awayjs/stage": "^0.10.0",
"@awayjs/graphics": "^0.4.0",
"@awayjs/scene": "^0.12.0",
"@awayjs/renderer": "^0.10.0",
"@awayjs/materials": "^0.5.0",
"@awayjs/view": "^0.5.0",
"tslib": "^1.9.0"
},
"devDependencies": {
"@awayjs/core": "^0.8.0",
"@awayjs/stage": "^0.10.0",
"@awayjs/graphics": "^0.4.0",
"@awayjs/scene": "^0.12.0",
"@awayjs/renderer": "^0.10.0",
"@awayjs/materials": "^0.5.0",
"@awayjs/view": "^0.5.0",
"tslib": "^1.9.0",
"rimraf": "^2.5.2",
"rollup": "^0.36.4",
"rollup-plugin-includepaths": "^0.2.1",
"typescript": "2.2.0-dev.20161123",
"uglify-js": "^3.0.15"
}
}