-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.41 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
{
"bugs": {
"url": "https://github.com/algorithm-archivists/gitbook-plugin-api-language-selector/issues"
},
"dependencies": {
"cheerio": "1.0.0-rc.2",
"gitbook-plugin-search": "2.2.1",
"lodash": "4.17.21",
"q": "1.5.1",
"q-plus": "0.0.8"
},
"description": "Dropdown programming language selector for GitBook v3",
"devDependencies": {
"eslint": "5.2.0",
"less": "3.8.0",
"less-plugin-clean-css": "1.5.1",
"mkdirp": "0.5.1",
"npm-run-all": "^4.1.3",
"rimraf": "2.6.2",
"uglify-js": "3.4.6"
},
"engines": {
"gitbook": ">=3.0.4"
},
"gitbook": {
"properties": {
"languages": {
"default": [],
"description": "List of languages code snippets",
"type": "array"
}
}
},
"homepage": "https://github.com/algorithm-archivists/gitbook-plugin-api-language-selector#readme",
"license": "Apache-2.0",
"name": "gitbook-plugin-api-language-selector",
"repository": {
"type": "git",
"url": "git+https://github.com/algorithm-archivists/gitbook-plugin-api-language-selector.git"
},
"scripts": {
"build:scripts": "uglifyjs -mc -o assets/api-language-selector.js src/js/api-language-selector.js",
"build:styles": "lessc -clean-css src/less/main.less assets/api-language-selector.css",
"clean": "rimraf assets && mkdirp assets",
"prepare": "run-s clean build:scripts build:styles"
},
"version": "3.0.0"
}