-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
62 lines (62 loc) · 1.86 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
{
"name": "avg-core",
"version": "0.1.1",
"description": "Develop Adventure Game (or ADV, Visual Novel, Galgame, etc.) on your own!",
"main": "dist/avg.js",
"author": "Icemic Jia <[email protected]>",
"homepage": "https://avgjs.org/",
"scripts": {
"dev": "webpack --env.development --watch --progress --colors",
"dist": "webpack --env.release && webpack --env.release --env.minimize",
"prepublish": "npm run dist",
"docs": "esdoc -c esdoc.json",
"test": "mocha --compilers js:babel-core/register"
},
"keywords": [
"Game Engine",
"AVG",
"Visual Novel",
"Galgame",
"Game"
],
"license": "Apache-2.0",
"dependencies": {
"avg-storyscript": "^0.2.2",
"deep-equal": "^1.0.1",
"fontfaceobserver": "^2.0.7",
"howler": "^2.0.2",
"ismobilejs": "^0.4.0",
"koa-compose": "^3.2.1",
"lodash": "^4.17.4",
"pixi-particles": "^2.1.1",
"pixi-richtext": "^1.0.9",
"pixi.js": "^4.5.4",
"prop-types": "^15.5.8",
"raw-loader": "^0.5.1",
"react": "^15.6.1",
"react-dom": "^15.4.1",
"whatwg-fetch": "^2.0.1"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.1.1",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-export-extensions": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-polyfill": "^6.20.0",
"babel-preset-latest": "^6.16.0",
"bitbar-webpack-progress-plugin": "^0.1.3",
"chai": "^3.5.0",
"esdoc": "^0.5.2",
"eslint": "^3.14.0",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.9.0",
"mocha": "^3.0.2",
"sinon": "^1.17.5",
"webpack": "^2.2.0"
}
}