-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 loc) · 1.3 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
{
"name": "wakaruland",
"version": "1.0.0",
"description": "https://wakaruland.com",
"main": "gulpfile.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "browserify --verbose -t [ babelify ] -g uglifyify src/index.js -o dist/index.js",
"watch": "watchify --verbose --debug -t [ babelify ] -p browserify-notify src/index.js -o dist/index.js",
"gulp": "gulp",
"push-gh-pages": "git status -s | grep '.' && echo 'you should commit before push-gh-pages' || (git add -f ./dist && git commit -m 'push gh-pages' && git push -f origin HEAD:gh-pages; git reset --hard HEAD^)"
},
"dependencies": {
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"jquery": "^2.2.4",
"socket.io-client": "^1.4.6",
"uglifyify": "^3.0.1",
"bootstrap": "^3.3.6"
},
"devDependencies": {
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"browser-sync": "^2.12.10",
"browserify-notify": "^1.1.2",
"gulp": "^3.9.1",
"watchify": "^3.7.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/napo0703/WakaruLand.git"
},
"author": "Naoaki Yamada",
"license": "ISC",
"bugs": {
"url": "https://github.com/napo0703/WakaruLand/issues"
},
"homepage": "https://github.com/napo0703/WakaruLand#readme"
}