-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 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
{
"name": "interactive-portfolio",
"version": "1.0.0",
"engines": {
"node": "4.2.6",
"npm": "3.6.0"
},
"description": "A Phaser game implementation of my portfolio",
"main": "src/index.js",
"bin": {
"interactive-portfolio": "serve.js"
},
"scripts": {
"postinstall": "gulp build --production",
"start": "node bin/serve.js",
"run": "gulp",
"play": "gulp build && node bin/serve.js",
"production": "gulp build --production",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/damianlajara/interactive-portfolio.git"
},
"keywords": [],
"author": "Damian Lajara",
"license": "ISC",
"bugs": {
"url": "https://github.com/damianlajara/interactive-portfolio/issues"
},
"homepage": "https://github.com/damianlajara/interactive-portfolio#readme",
"dependencies": {
"express": "^4.14.0",
"phaser": "^2.6.1",
"gulp": "^3.9.1",
"babel-preset-es2015": "^6.9.0",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"browser-sync": "^2.13.0",
"del": "^2.2.1",
"exorcist": "^0.4.0",
"gulp-buffer": "0.0.2",
"gulp-if": "^2.0.1",
"gulp-uglify": "^1.5.4",
"gulp-util": "^3.0.7",
"vinyl-source-stream": "^1.1.0",
"yargs": "^4.8.1"
}
}