headrush
Version:
Kick start your app after resolving dependancies
35 lines (34 loc) • 803 B
JSON
{
"name": "headrush",
"version": "1.0.0",
"description": "Kick start your app after resolving dependancies",
"main": "index.js",
"scripts": {
"lint": "standard",
"test": "tape tests/*.js | faucet",
"ci": "npm run lint; npm run coverage",
"coverage": "istanbul cover tape tests/*.js",
"coveralls": "cat coverage/lcov.info | coveralls"
},
"keywords": [
"boot",
"deps"
],
"repository": {
"type": "git",
"url": "https://github.com/GavinDmello/headrush.git"
},
"author": "Gavin Dmello <dmellogavin5000@gmail.com>",
"license": "MIT",
"devDependencies": {
"coveralls": "^3.0.0",
"faucet": "0.0.1",
"istanbul": "^0.4.5",
"pre-commit": "^1.2.2",
"standard": "^10.0.3",
"tape": "^4.8.0"
},
"pre-commit": [
"test"
]
}