forked from cutting-room-floor/documentation-theme-default
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "documentation-theme-default",
"version": "3.0.0",
"description": "the default theme for documentation",
"scripts": {
"lint": "eslint *.js **/*.js",
"test": "npm run lint && tap -t 120 --coverage test/*.js"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/documentationjs/documentation-theme-default.git"
},
"keywords": [
"documentation",
"documentation-theme",
"theme"
],
"author": "Tom MacWright",
"license": "ISC",
"bugs": {
"url": "https://github.com/documentationjs/documentation-theme-default/issues"
},
"homepage": "https://github.com/documentationjs/documentation-theme-default",
"dependencies": {
"concat-stream": "^1.5.0",
"documentation-theme-utils": "^3.0.0",
"highlight.js": "^9.0.0",
"lodash": "4.11.1",
"remark": "^4.1.2",
"remark-html": "^3.0.0",
"unist-util-visit": "1.1.0",
"vinyl": "^1.0.0",
"vinyl-fs": "^2.0.0"
},
"devDependencies": {
"eslint": "^1.10.3",
"tap": "^2.2.0"
}
}