-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 919 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 919 Bytes
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
{
"name": "game",
"version": "1.0.0",
"description": "js game",
"main": "app/index.html",
"scripts": {
"start": "node app.js",
"build": "browserify app/src/main.js | babel > app/bundle.js"
},
"keywords": [
"javascript",
"game"
],
"author": "ctyloaing",
"license": "ISC",
"dependencies": {
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-remove-strict-mode": "0.0.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"babelify": "^7.3.0",
"bootstrap": "^3.3.6",
"browser-sync": "^2.12.3",
"browserify": "^13.0.0",
"gulp": "^3.9.1",
"gulp-sass": "^2.2.0",
"jquery": "^2.2.3",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-preset-es2015": "^6.6.0",
"express": "^4.13.4",
"gulp-babel": "^6.1.2"
}
}