forked from prescottprue/gitbook-plugin-versions-select
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·50 lines (50 loc) · 1.33 KB
/
package.json
File metadata and controls
executable file
·50 lines (50 loc) · 1.33 KB
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
{
"name": "gitbook-plugin-versions-select",
"description": "Fork of versions plugin with selected status based on url.",
"main": "index.js",
"version": "0.1.1",
"scripts": {
"lint": "eslint index.js test.js, assets/**",
"lint:fix": "npm run lint -- --fix",
"test": "npm run lint && tape test.js"
},
"engines": {
"gitbook": ">=2.4.1"
},
"gitbook": {
"properties": {
"type": {
"type": "string",
"enum": [
"branches",
"tags",
"languages"
],
"default": "branches"
},
"includeFilepath": {
"type": "boolean",
"description": "True to insert current filepath at the end of the version url"
}
}
},
"homepage": "https://github.com/prescottprue/gitbook-plugin-versions-select",
"repository": {
"type": "git",
"url": "https://github.com/prescottprue/gitbook-plugin-versions-select.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/prescottprue/gitbook-plugin-versions-select/issues"
},
"devDependencies": {
"eslint": "3.11.1",
"eslint-config-semistandard": "7.0.0",
"eslint-config-standard": "6.2.1",
"eslint-plugin-promise": "3.4.0",
"eslint-plugin-react": "6.7.1",
"eslint-plugin-standard": "2.0.1",
"gitbook-tester": "1.4.3",
"tape": "4.6.3"
}
}