-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
83 lines (83 loc) · 2.35 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "meleelight",
"version": "0.0.1",
"description": "Melee Light Platform Fighter",
"main": "app.js",
"scripts": {
"build": "webpack --progress --colors --config=bin/webpack/build.config.js",
"flow": "flow status src; test $? -eq 0 -o $? -eq 2",
"dev": "webpack --progress --colors --watch --config=bin/webpack/dev.config.js",
"animations": "webpack --progress --colors --config=bin/webpack/animations.config.js",
"release": "node bin/release.js",
"serve": "node app",
"postinstall": " npm run animations && npm run build ",
"rebuild": "./node_modules/.bin/electron-rebuild -w uws"
},
"engines": {
"node": "8.9.1",
"npm": "5.5.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/schmooblidon/meleelight.git"
},
"keywords": [
"melee"
],
"author": "schmooblidon",
"license": "MIT",
"bugs": {
"url": "https://github.com/schmooblidon/meleelight/issues"
},
"homepage": "https://github.com/schmooblidon/meleelight#readme",
"dependencies": {
"howler": "^2.0.1",
"jquery": "1.11.3"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.8",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"can": "^3.2.2",
"deepstream.io": "^2.1.0",
"deepstream.io-client-js": "^2.0.0",
"electron": "^1.8.1",
"electron-menu": "^1.0.0",
"electron-packager": "^10.1.0",
"electron-rebuild": "^1.6.0",
"electron-spawn": "^5.0.0",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-flowtype-errors": "^2.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"express": "^4.14.0",
"flow-bin": "^0.37.0",
"fs-extra": "^1.0.0",
"happypack": "^3.0.0",
"howler": "^2.0.1",
"jquery": "1.11.3",
"localforage": "^1.4.3",
"optimist": "^0.6.1",
"pako": "^1.0.4",
"peer": "^0.2.8",
"sw-precache-webpack-plugin": "^0.6.3",
"webpack": "^1.15.0",
"webpack-notifier": "^1.4.1",
"yargs": "^6.4.0"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"ignore": [
"src/characters/**/*animations.js"
]
}
}