-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 803 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"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 <[email protected]>",
"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"
]
}