sync-modules
Version:
automatically keep node_modules in sync with Git hooks
41 lines (40 loc) • 762 B
JSON
{
"name": "sync-modules",
"version": "0.1.0",
"description": "automatically keep node_modules in sync with Git hooks",
"scripts": {
"install": "bin/install",
"uninstall": "bin/uninstall",
"precommit": "standard",
"test": "mocha"
},
"keywords": [
"Git",
"hooks",
"node_modules",
"package.json"
],
"author": {
"name": "David Braun",
"email": "David@NodeGuy.com",
"url": "https://www.NodeGuy.com/"
},
"license": "GPL-3.0",
"devDependencies": {
"husky": "^0.11.4",
"mocha": "^2.5.3",
"standard": "^7.1.1",
"tmp": "0.0.28"
},
"standard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"it",
"run"
]
}
}