-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.23 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
{
"name": "spike-collections",
"description": "jekyll-esque features for spike",
"version": "1.3.0",
"author": "Jeff Escalante",
"ava": {
"verbose": "true"
},
"bugs": "https://github.com/static-dev/spike-collections/issues",
"dependencies": {
"es6bindall": "^0.0.9",
"filewrap": "^1.0.0",
"glob": "^7.1.2",
"joi": "^13.0.2",
"js-yaml": "^3.9.1",
"lodash.bindall": "^4.4.0",
"markdown-it": "^8.3.2",
"objectfn": "^2.0.0",
"spike-util": "^1.3.0",
"when": "^3.7.8"
},
"devDependencies": {
"ava": "^0.24.0",
"coveralls": "^3.0.0",
"nyc": "^11.3.0",
"prettier": "^1.9.0",
"reshape-standard": "^3.1.0",
"rimraf": "^2.6.1",
"source-loader": "^1.0.0",
"spike-core": "^2.2.0"
},
"engines": {
"node": ">= 6"
},
"homepage": "https://github.com/static-dev/spike-collections",
"keywords": [
"spikeplugin"
],
"license": "MIT",
"main": "lib",
"repository": "static-dev/spike-collections",
"scripts": {
"coverage": "nyc ava && nyc report --reporter=html && open ./coverage/index.html",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "prettier --no-semi --single-quote --write '**/*.js'",
"test": "nyc ava"
}
}