This repository has been archived by the owner on Jun 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.58 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
{
"name": "split",
"version": "0.0.0",
"description": "Just a proof of concept for a game which uses new screens instead of lives",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "standard --verbose | snazzy",
"dev": "webpack --colors --display-error-details --config webpack.config.js && webpack-dev-server",
"clean": "rimraf dist",
"build": "npm run clean && webpack --colors --display-error-details --config webpack.production.config.js",
"deploy": "git subtree push --prefix dist origin gh-pages",
"publish": "npm run build && npm run deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/XicoMBD/split.git"
},
"author": "Francisco Dias <[email protected]> (http://franciscodias.net/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/XicoMBD/split/issues"
},
"homepage": "https://github.com/XicoMBD/split#readme",
"dependencies": {
"babel": "^5.8.23",
"babel-loader": "^5.3.2",
"brfs": "^1.4.1",
"css-loader": "^0.19.0",
"file-loader": "^0.8.4",
"html-webpack-plugin": "^1.6.1",
"json-loader": "^0.5.3",
"lodash": "^3.10.1",
"pixi.js": "^3.0.7",
"raf": "^3.1.0",
"randomcolor": "^0.4.0",
"style-loader": "^0.12.4",
"webpack": "^1.12.2"
},
"devDependencies": {
"babel-eslint": "^4.1.3",
"rimraf": "^2.4.3",
"standard": "^5.3.1",
"webpack-dev-server": "^1.12.0"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"./dist/*",
"./js/*",
"./node_modules/*"
]
}
}