-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.11 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
{
"name": "gitbook-plugin-http-verb",
"description": "gitbook plugin for a styled http verb display",
"main": "index.js",
"version": "0.0.12",
"engines": {
"gitbook": ">=2.3.0"
},
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec --timeout 35000 __tests__",
"postversion": "git push --follow-tags"
},
"homepage": "https://plugins.gitbook.com/plugin/http-verb",
"repository": {
"type": "git",
"url": "https://github.com/lwhiteley/gitbook-plugin-http-verb.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/lwhiteley/gitbook-plugin-http-verb/issues"
},
"devDependencies": {
"chai": "^4.1.2",
"gitbook-tester": "^1.4.3",
"mocha": "^5.0.4"
},
"keywords": [
"gitbook",
"gitbook-plugin",
"http",
"plugin",
"verb"
],
"dependencies": {
"lodash": "^4.17.5",
"to-style": "^1.3.3"
},
"gitbook": {
"properties": {
"styles": {
"type": "object",
"default": null,
"description": "an object map of styles for each http verb. see example above on how to define."
}
}
}
}