-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.4 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.4 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
65
{
"name": "awayjs-lite-examples",
"version": "1.0.0",
"description": "A collection of simple code examples implementing the awayjs-lite engine",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"rimraf": "rimraf",
"webpack": "webpack",
"clean": "npm cache clean && npm run rimraf -- node_modules bin",
"clean:bin": "npm run rimraf -- bin",
"preclean:install": "npm run clean",
"clean:install": "npm set progress=false && npm install",
"preclean:start": "npm run clean",
"clean:start": "npm start",
"watch": "npm run watch:dev",
"watch:dev": "npm run build:dev -- --watch",
"watch:dev:hmr": "npm run watch:dev -- --hot",
"watch:test": "npm run test -- --auto-watch --no-single-run",
"watch:prod": "npm run build:prod -- --watch",
"build": "npm run build:dev",
"prebuild:dev": "npm run clean:bin",
"build:dev": "webpack --config webpack.config.js --progress --profile --colors --display-error-details --display-cached",
"prebuild:prod": "npm run clean:bin",
"build:prod": "webpack --config webpack.config.js --progress --profile --colors --display-error-details --display-cached --bail",
"server": "npm run server:dev",
"server:dev": "webpack-dev-server --config webpack.config.js --inline --progress --profile --colors --watch --display-error-details --display-cached --content-base bin/",
"server:dev:hmr": "npm run server:dev -- --hot",
"server:prod": "http-server bin --cors",
"start": "npm run server:dev",
"start:hmr": "npm run server:dev:hmr",
"version": "npm run build",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/awayjs/awayjs-lite-examples.git"
},
"keywords": [
"AwayJS",
"3D",
"2D",
"graphics",
"WebGL"
],
"author": "Rob Bateman",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/awayjs/awayjs-lite-examples/issues"
},
"homepage": "https://github.com/awayjs/awayjs-lite-examples#readme",
"dependencies": {
"awayjs-lite": "^5.0.0"
},
"devDependencies": {
"awesome-typescript-loader": "^0.17.0",
"compression-webpack-plugin": "^0.3.1",
"copy-webpack-plugin": "^1.1.1",
"html-webpack-plugin": "^2.15.0",
"rimraf": "^2.5.2",
"typescript": "^1.9.0-dev.20160411",
"webpack": "^1.12.15",
"webpack-dev-server": "^1.14.1"
}
}