-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.65 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
{
"name": "spaceinvader",
"version": "0.2.4",
"main": "main.js",
"scripts": {
"build": "grunt dist && npm run build-linux && npm run build-win32 && npm run build-darwin",
"build-all": "grunt dist && node deployment/build --platform all",
"build-darwin": "node deployment/build --platform darwin",
"build-linux": "node deployment/build --platform linux",
"build-win32": "node deployment/build --platform win32",
"build-docs": "grunt dist && node deployment/docs",
"dev": "concurrently \"grunt dev\" \"cd modules/highscores && npm run dev\"",
"deploy-appveyor": "node deployment/build --platform win32 --arch all && node deployment/deploy-appveyor apps",
"deploy-travis": "node deployment/build --platform linux --arch all && node deployment/deploy-travis 'apps'",
"install-highscores": "cd modules/highscores && npm install",
"install-modules": "npm run postinstall-highscores",
"lint": "eslint js/**/*.js *.js tasks/**/*.js deployment",
"lint-fix": "npm run lint -- --fix",
"postinstall": "grunt dist",
"prepush": "npm run lint",
"test": "npm run lint"
},
"devDependencies": {
"concurrently": "^3.5.1",
"electron": "^1.8.4",
"electron-builder": "^20.5.1",
"electron-packager": "^11.0.1",
"eslint": "^4.18.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"extract-zip": "1.6.6",
"grunt": "^1.0.1",
"grunt-asar": "github:bwin/grunt-asar#update-asar",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-connect": "^1.0.2",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify-es": "git://github.com/gruntjs/grunt-contrib-uglify.git#harmony",
"grunt-contrib-watch": "^1.0.0",
"grunt-download-electron": "^2.1.4",
"grunt-processhtml": "^0.4.1",
"grunt-replace": "^1.0.1",
"husky": "^0.14.3",
"minimist": "^1.2.0",
"ncp": "^2.0.0",
"rmfr": "^2.0.0",
"tar.gz": "^1.0.5",
"zip-folder": "^1.0.0"
},
"description": "A MelonJS Space Invaders-like game.",
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FranciscoKnebel/spaceinvader.git"
},
"keywords": [
"spaceinvaders",
"melonJS",
"electron"
],
"author": "Francisco Knebel",
"license": "MIT",
"bugs": {
"url": "https://github.com/FranciscoKnebel/spaceinvader/issues"
},
"homepage": "https://github.com/FranciscoKnebel/spaceinvader#readme",
"optionalDependencies": {
"electron-installer-debian": "^0.8.0",
"electron-installer-windows": "^0.2.0"
}
}