1
mirror of https://github.com/jakejarvis/hugo-extended.git synced 2025-07-03 13:26:38 -04:00

fix(package.json): support Windows rm on installation (#13)

fix: https://github.com/fenneclab/hugo-bin/issues/12
This commit is contained in:
Shun Sato
2017-03-30 00:52:47 +09:00
committed by GitHub
parent f1ffb5a927
commit df82954fe6

View File

@ -6,7 +6,7 @@
"main": "index.js",
"scripts": {
"test": "eslint . && mocha",
"postinstall": "rm -rf vendor && node lib/install"
"postinstall": "del-cli vendor && node lib/install"
},
"repository": "fenneclab/hugo-bin",
"author": "satoshun00 <shun.sato@fenneclab.com>",
@ -40,6 +40,7 @@
},
"dependencies": {
"bin-wrapper": "3.0.2",
"del-cli": "0.2.1",
"logalot": "2.1.0"
}
}