-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
50 lines (50 loc) · 1.19 KB
/
package.json
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "spike",
"description": "an opinionated static build tool, powered by webpack",
"version": "2.3.0",
"author": "Jeff Escalante",
"ava": {
"verbose": "true",
"serial": "true"
},
"bin": {
"spike": "./bin/spike"
},
"bugs": "https://github.com/static-dev/spike/issues",
"dependencies": {
"argparse": "^1.0.10",
"chalk": "^2.4.1",
"inquirer": "^3.2.1",
"lodash.reduce": "^4.6.0",
"spike-core": "^2.3.0",
"universal-analytics": "^0.4.17"
},
"devDependencies": {
"ava": "^0.25.0",
"coveralls": "^3.0.2",
"husky": "^0.14.3",
"nyc": "^12.0.2",
"prettier": "^1.13.7",
"rewire": "^2.5.1"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=3.8.0"
},
"homepage": "https://github.com/static-dev/spike",
"keywords": [
"spike",
"static",
"webpack"
],
"license": "MIT",
"main": "lib",
"repository": "static-dev/spike",
"scripts": {
"coverage": "nyc --reporter=html ava && open coverage/index.html",
"coveralls": "nyc --reporter=lcov ava && cat ./coverage/lcov.info | coveralls",
"lint": "prettier --no-semi --single-quote --write '**/*.js'",
"precommit": "npm run lint",
"test": "ava "
}
}