-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
37 lines (37 loc) · 967 Bytes
/
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
{
"name": "gitbook-plugin-prism",
"description": "Prism highlighting for gitbook",
"main": "index.js",
"version": "2.4.0",
"scripts": {
"lint": "eslint index.js test.js",
"test": "npm run lint && tape test.js"
},
"engines": {
"gitbook": ">=2.4.1 <4.0.0"
},
"homepage": "https://github.com/gaearon/gitbook-plugin-prism",
"repository": {
"type": "git",
"url": "https://github.com/gaearon/gitbook-plugin-prism.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/gaearon/gitbook-plugin-prism/issues"
},
"dependencies": {
"cheerio": "0.22.0",
"mkdirp": "0.5.1",
"prismjs": "^1.15.0"
},
"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.9.1"
}
}