-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (44 loc) · 1.35 KB
/
package.json
File metadata and controls
47 lines (44 loc) · 1.35 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
{
"name": "dreamengine",
"version": "1.0.0",
"description": "A simple and fast 2D engine based on PIXI",
"main": "js/main.js",
"dependencies": {
"howler": "^2.0.5",
"pixi.js": "4.5.6",
"pixijs-charm": "^0.1.4",
"requirejs": "^2.3.5"
},
"devDependencies": {
"parallel-webpack": "^2.2.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4",
"webpack-utf8-bom": "^1.1.3"
},
"scripts": {
"test": "echo \"Error: no test specified this is a TODO\" && exit 1",
"watch": "echo TODO",
"build": "DEV_BUILD=true FINAL_BUILD=true parallel-webpack --config webpack.config.js --verbose --no-stats",
"build-dev": "DEV_BUILD=true parallel-webpack --config webpack.config.js --verbose --no-stats",
"win-build": "set DEV_BUILD=true && set FINAL_BUILD=true&& parallel-webpack --config webpack.config.js --verbose --no-stats",
"win-build-dev": "set DEV_BUILD=true && parallel-webpack --config webpack.config.js --verbose --no-stats"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Inateno/Dreamengine.git"
},
"keywords": [
"webgl",
"2D",
"PIXI",
"canvas",
"js",
"games"
],
"author": "Inateno",
"license": "MIT",
"bugs": {
"url": "https://github.com/Inateno/Dreamengine/issues"
},
"homepage": "https://github.com/Inateno/Dreamengine#readme"
}