-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "spike-directus",
"version": "0.1.0",
"description": "Spike plugin for integrating Directus CMS with a static site",
"bugs": "https://github.com/hypebeast/spike-directus/issues",
"main": "lib",
"scripts": {
"test": "standard --verbose | snazzy && ava",
"coverage": "nyc ava",
"coveralls": "nyc --reporter=lcov ava && cat ./coverage/lcov.info | coveralls"
},
"keywords": [
"spike",
"spikeplugin",
"directus"
],
"author": "Sebastian Ruml",
"license": "MIT",
"repository": "github:hypebeast/spike-directus",
"dependencies": {
"directus-sdk-javascript": "^2.9.0",
"es6bindall": "0.0.9",
"joi": "^13.1.2",
"spike-util": "^1.3.0",
"when": "^3.7.8"
},
"devDependencies": {
"ava": "^0.25.0",
"coveralls": "^3.0.0",
"dotenv": "^5.0.0",
"nyc": "^11.4.1",
"rimraf": "^2.6.2",
"snazzy": "^7.0.0",
"spike-core": "^2.2.0",
"spike-html-standards": "^0.3.7",
"standard": "^10.0.3"
},
"ava": {
"verbose": "true",
"serial": "true"
}
}