mirror of
https://github.com/jakejarvis/hugo-extended.git
synced 2026-08-03 18:55:21 -04:00
Minor package.json tweaks (#68)
* Add a few script aliases. * Be more explicit with the lib files included. * Switch to the caret operator for deps and update them. We have a package-lock.json file to ensure the deps are what we want.
This commit is contained in:
Generated
+628
-740
File diff suppressed because it is too large
Load Diff
+12
-10
@@ -11,23 +11,25 @@
|
|||||||
"hugo": "cli.js"
|
"hugo": "cli.js"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"bin-wrapper": "4.0.0",
|
"bin-wrapper": "^4.0.0",
|
||||||
"del-cli": "1.1.0",
|
"del-cli": "^1.1.0",
|
||||||
"logalot": "2.1.0",
|
"logalot": "^2.1.0",
|
||||||
"pkg-conf": "2.1.0"
|
"pkg-conf": "^2.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"bin-check": "4.1.0",
|
"bin-check": "^4.1.0",
|
||||||
"eslint": "5.1.0",
|
"eslint": "^5.6.1",
|
||||||
"lodash": "4.17.10",
|
"lodash": "^4.17.11",
|
||||||
"mocha": "5.2.0"
|
"mocha": "^5.2.0"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "eslint . && mocha",
|
"eslint": "eslint .",
|
||||||
|
"mocha": "mocha",
|
||||||
|
"test": "npm run eslint && npm run mocha",
|
||||||
"postinstall": "del-cli vendor && node lib/install"
|
"postinstall": "del-cli vendor && node lib/install"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"lib/",
|
"lib/*.js",
|
||||||
"index.js",
|
"index.js",
|
||||||
"cli.js"
|
"cli.js"
|
||||||
],
|
],
|
||||||
|
|||||||
Reference in New Issue
Block a user