forked from drelaptop/gitbook-plugin-github-issue-feedback
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 2.13 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"directories": {
"test": "test"
},
"author": "azu",
"license": "MIT",
"files": [
"bin/",
"lib/",
"src/",
"assets/"
],
"name": "gitbook-plugin-github-issue-feedback-language-custom",
"version": "1.3.3",
"description": "GitHub issue feedback for gitbook.",
"main": "index.js",
"engines": {
"gitbook": "*"
},
"gitbook": {
"properties": {
"repo": {
"type": "string",
"description": "GitHub repo path. e.g.) asciidwango/js-primer ",
"required": true
},
"newIssueURL": {
"type": "string",
"description": "GitHub New Issue url e.g.) https://github.com/azu/promises-book/issues/new",
"required": false
},
"markdownBaseURL": {
"type": "string",
"description": "Base url for resouce e.g.) https://github.com/asciidwango/js-primer/blob/master/",
"required": false
},
"githubAPIBaseURL": {
"type": "string",
"description": "GitHub API Base url e.g.) https://api.github.com/repos/asciidwango/js-primer/blob/master/",
"required": false
}
}
},
"scripts": {
"build": "webpack -p",
"watch": "webpack --watch",
"prepublish": "npm run --if-present build"
},
"keywords": [
"gitbook",
"github",
"issue",
"feeback"
],
"repository": {
"type": "git",
"url": "https://github.com/azu/gitbook-plugin-github-issue-feedback.git"
},
"bugs": {
"url": "https://github.com/azu/gitbook-plugin-github-issue-feedback/issues"
},
"homepage": "https://github.com/azu/gitbook-plugin-github-issue-feedback",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.5.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-jsdoc-to-assert": "^4.0.0",
"babel-preset-power-assert": "^1.0.0",
"babel-register": "^6.24.1",
"cross-env": "^5.0.0",
"mocha": "^3.4.2",
"power-assert": "^1.4.2",
"uglifyjs-webpack-plugin": "^0.4.3",
"webpack": "^2.6.1"
},
"dependencies": {
"position-map-text-to-markdown": "^1.0.1",
"url-join": "^2.0.2"
}
}