2
2
mirror of https://github.com/Llewellynvdm/nativefier.git synced 2024-12-23 10:38:55 +00:00

Update dev dependencies and add ci scripts

This commit is contained in:
Jia Hao 2016-01-25 01:31:32 +08:00
parent 68a5f46798
commit e3dc3ee175

View File

@ -13,6 +13,8 @@
"scripts": { "scripts": {
"dev-up": "npm install && (cd app && npm install) && npm run build", "dev-up": "npm install && (cd app && npm install) && npm run build",
"test": "gulp test", "test": "gulp test",
"lint": "gulp lint",
"ci": "gulp ci",
"clean": "gulp clean", "clean": "gulp clean",
"build": "gulp build", "build": "gulp build",
"watch": "while true ; do gulp watch ; done", "watch": "while true ; do gulp watch ; done",
@ -51,6 +53,7 @@
] ]
}, },
"devDependencies": { "devDependencies": {
"async": "^1.5.2",
"babel-core": "^6.4.5", "babel-core": "^6.4.5",
"babel-loader": "^6.2.1", "babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13", "babel-preset-es2015": "^6.3.13",
@ -64,6 +67,7 @@
"gulp-eslint": "^1.1.1", "gulp-eslint": "^1.1.1",
"gulp-mocha": "^2.2.0", "gulp-mocha": "^2.2.0",
"gulp-sourcemaps": "^1.6.0", "gulp-sourcemaps": "^1.6.0",
"lodash": "^4.0.0",
"run-sequence": "^1.1.5", "run-sequence": "^1.1.5",
"tmp": "0.0.28", "tmp": "0.0.28",
"webpack-stream": "^3.1.0" "webpack-stream": "^3.1.0"