forked from feathersjs/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·51 lines (51 loc) · 1.43 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
{
"name": "feathers-docs",
"description": "Feathers documentation",
"version": "2.2.0",
"private": true,
"homepage": "https://github.com/feathersjs/feathers-docs",
"main": "",
"keywords": [
"feathers",
"feathers-docs"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/feathers-docs.git"
},
"author": {
"name": "Feathers contributors",
"email": "[email protected]",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs/feathers-docs/issues"
},
"engines": {
"node": ">= 0.12.0"
},
"scripts": {
"build": "gitbook build",
"build:diffs": "./examples/make-diffs.sh && npm run build",
"postinstall": "npm run build",
"publish": "git push origin && git push origin --tags",
"release:patch": "npm version patch && npm run publish",
"release:minor": "npm version minor && npm run publish",
"release:major": "npm version major && npm run publish",
"test": "echo \"Error: no test specified.\""
},
"directories": {},
"dependencies": {
"gitbook-plugin-edit-link": "^2.0.2",
"gitbook-plugin-feathers-collapsible-menu": "^2.0.0",
"gitbook-plugin-feathers-versions": "^0.1.0",
"gitbook-plugin-ga": "^1.0.1",
"gitbook-plugin-heading-anchors": "^1.0.3",
"gitbook-plugin-include-codeblock": "2.2.0"
},
"devDependencies": {
"gitbook-cli": "^2.3.0"
}
}