Improve development files

This commit is contained in:
Yuya Ochiai
2015-12-23 22:04:21 +09:00
parent f5ce8ae5a1
commit 6316df3c20
6 changed files with 31 additions and 11 deletions

View File

@@ -6,9 +6,18 @@
"author": "Yuya Ochiai",
"license": "MIT",
"scripts": {
"postinstall": "cd src && npm install",
"start": "gulp build && electron src",
"test": "gulp build && mocha"
"install": "cd src && npm install",
"postinstall": "npm run build",
"build": "gulp build",
"start": "electron src",
"serve": "gulp serve",
"test": "gulp build && mocha",
"package": "gulp package",
"package:windows": "gulp package:windows",
"package:osx": "gulp package:osx",
"package:linux": "gulp package:linux",
"package:all": "gulp package:all",
"prettify": "gulp prettify"
},
"devDependencies": {
"babel-preset-react": "^6.3.13",
@@ -25,6 +34,7 @@
"gulp-esformatter": "^5.0.0",
"gulp-jsbeautifier": "^1.0.1",
"mocha": "^2.3.4",
"mocha-circleci-reporter": "0.0.1",
"should": "^8.0.1",
"webdriverio": "^3.3.0"
}