-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
71 lines (71 loc) · 1.84 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "spike-core",
"description": "an opinionated static build tool, powered by webpack",
"version": "2.3.0",
"author": "Jeff Escalante",
"ava": {
"verbose": "true",
"serial": "true"
},
"bugs": "https://github.com/static-dev/spike-core/issues",
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.5",
"browser-sync": "^2.24.6",
"browser-sync-webpack-plugin": "^1.2.0",
"filewrap": "^1.0.0",
"glob": "^7.1.2",
"hygienist-middleware": "^0.1.3",
"joi": "^12.0.0",
"lodash.difference": "^4.5.0",
"lodash.merge": "^4.6.0",
"lodash.union": "^4.6.0",
"micromatch": "^3.1.4",
"mkdirp": "^0.5.1",
"postcss-loader": "^2.1.6",
"reshape-loader": "^1.3.0",
"rimraf": "^2.6.2",
"source-loader": "^1.0.0",
"spike-util": "^1.3.0",
"sprout": "^1.2.1",
"webpack": "^3.12.0",
"when": "^3.7.8"
},
"devDependencies": {
"ava": "^0.25.0",
"chalk": "^2.3.0",
"coveralls": "^3.0.2",
"husky": "^0.14.3",
"md5-file": "^3.2.3",
"nyc": "^12.0.2",
"postcss-color-gray": "^4.0.0",
"postcss-import": "^11.0.0",
"reshape-custom-elements": "^0.1.0",
"reshape-expressions": "^0.1.5",
"snazzy": "^7.0.0",
"standard": "^11.0.1",
"sugarml": "^0.7.0",
"sugarss": "^1.0.1"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=3.8.0"
},
"homepage": "https://github.com/static-dev/spike-core",
"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": "standard --verbose | snazzy",
"precommit": "npm run lint -s",
"pretest": "npm run lint -s",
"test": "ava "
}
}