-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.47 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
{
"name": "space-invaders",
"version": "0.0.1",
"description": "Classic game Space Invaders in Javascript",
"main": "index.html",
"repository": {
"type": "git",
"url": "git+https://github.com/johnygomez/spaceinvadersjs.git"
},
"keywords": [
"space",
"invaders",
"javascript",
"game"
],
"author": "Jan Gamec",
"license": "MIT",
"bugs": {
"url": "https://github.com/johnygomez/spaceinvadersjs/issues"
},
"scripts": {
"pregulp": "npm-run-all clean mkdist",
"gulp": "gulp",
"build": "npm-run-all gulp watch:lint browserify",
"server": "cd dist/ && python3 -m http.server 8000",
"start": "npm-run-all --parallel server watch",
"browserify": "browserify ./src/js/app.js -t babelify > ./dist/js/app.js",
"clean": "rm -rf dist/",
"mkdist": "mkdir -p dist/",
"watch:lint": "eslint src/js/*",
"watch:js": "watchify src/js/app.js -t babelify -o dist/js/app.js -v",
"watch:gulp": "gulp watch",
"watch": "npm-run-all --parallel watch:*"
},
"homepage": "https://github.com/johnygomez/spaceinvadersjs#readme",
"dependencies": {
"bower": "^1.7.9"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"eslint": "^2.12.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.0",
"gulp-sass": "^2.3.1",
"gulp-using": "^0.1.0",
"node-sass": "^3.7.0",
"npm-run-all": "^2.1.1",
"watchify": "^3.7.0"
}
}