forked from azu/gitbook-plugin-include-codeblock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.14 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "gitbook-plugin-include-codeblock",
"repository": {
"type": "git",
"url": "https://github.com/azu/gitbook-plugin-include-codeblock.git"
},
"author": "azu",
"email": "azuciao@gmail.com",
"homepage": "https://github.com/azu/gitbook-plugin-include-codeblock",
"license": "MIT",
"bugs": {
"url": "https://github.com/azu/gitbook-plugin-include-codeblock/issues"
},
"version": "3.2.2",
"description": "GitBook plugin for including file",
"main": "lib/include-codeblock.js",
"bin": {
"include-codeblock": "./bin/include-codeblock.js"
},
"files": [
"bin",
"lib",
"templates",
"src"
],
"directories": {
"test": "test"
},
"scripts": {
"build": "NODE_ENV=production babel src --out-dir lib --source-maps",
"lint": "eslint --cache src/*.js test/*.js",
"lint:fix": "eslint --cache --fix src/*.js test/*.js",
"watch": "babel src --out-dir lib --watch --source-maps",
"prepublish": "npm run --if-present build",
"test": "npm run lint && mocha",
"test:example-default": "cd examples/default && npm i && npm run build",
"test:example-ace": "cd examples/ace && npm i && npm run build",
"test:example-custom": "cd examples/custom && npm i && npm run build",
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check"
},
"keywords": [
"gitbook",
"plugin",
"gitbook-plugin"
],
"engines": {
"gitbook": "*"
},
"gitbook": {
"properties": {
"check": {
"type": "boolean",
"description": "ace syntax validation (ace* template required)",
"default": false,
"required": false
},
"edit": {
"type": "boolean",
"description": "ace code edition (ace* template required)",
"default": false,
"required": false
},
"lang": {
"type": "string",
"description": "language for all codes",
"default": "",
"required": false
},
"fixlang": {
"type": "boolean",
"description": "Fix lang label (c++,...)",
"default": false,
"required": false
},
"template": {
"type": "string",
"description": "Template string",
"default": "default",
"required": false
},
"theme": {
"type": "string",
"description": "ace code editor theme (ace* template required)",
"default": "chrome",
"required": false
},
"unindent": {
"type": "boolean",
"description": "undindent inner snippets",
"default": false,
"required": false
}
}
},
"dependencies": {
"entities": "^1.1.1",
"handlebars": "^4.0.5",
"language-map": "^1.1.1",
"meow": "^4.0.0",
"winston-color": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-preset-es2015": "^6.6.0",
"babel-preset-jsdoc-to-assert": "^1.0.1",
"babel-preset-power-assert": "^1.0.0",
"babel-register": "^6.8.0",
"eslint": "^3.14.1",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-prettier": "^2.1.2",
"mocha": "^2.4.5",
"power-assert": "^1.3.1",
"prettier": "^1.5.2"
}
}