-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
58 lines (58 loc) · 1.59 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
{
"name": "moirai",
"version": "0.1.0",
"description": "React.js game engine. Exciting, experimental and unstable",
"main": "dist/index.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "karma start",
"clean": "rimraf dist",
"build": "npm run clean && rollup-babel-lib-bundler src/index.js",
"examples": "webpack-dev-server --config examples/webpack.config.js --content-base examples"
},
"repository": {
"type": "git",
"url": "https://github.com/freezedev/moirai.git"
},
"files": [
"dist",
"src"
],
"author": "",
"license": "(Unlicense OR MIT)",
"bugs": {
"url": "https://github.com/freezedev/moirai/issues"
},
"homepage": "https://github.com/freezedev/moirai",
"rollupBabelLibBundler": {
"moduleName": "moirai",
"dest": "dist",
"babel": {
"presets": ["es2015-loose-rollup", "react"],
"plugins": ["transform-class-properties", "transform-export-extensions"]
}
},
"devDependencies": {
"babel-core": "^6.4.5",
"babel-loader": "^6.2.1",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-export-extensions": "^6.5.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-loose-rollup": "^7.0.0",
"babel-preset-react": "^6.3.13",
"react-dom": "^0.14.3",
"rimraf": "^2.5.1",
"rollup-babel-lib-bundler": "^2.0.0",
"webpack": "^1.8.5",
"webpack-dev-server": "^1.8.0"
},
"dependencies": {
"es6-promise": "^3.0.2",
"eventmap": "^2.1.0",
"gamebox": "^0.2.0",
"react": "^0.14.3",
"react-scenedirector": "^1.1.3"
}
}