forked from docpress/docpress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.52 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
{
"name": "docpress",
"description": "Documentation website generator",
"homepage": "http://docpress.github.io",
"version": "0.8.2",
"main": "index.js",
"bin": {
"docpress": "bin/docpress"
},
"author": {
"email": "rico@ricostacruz.com",
"name": "Rico Sta. Cruz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/docpress/docpress.git"
},
"bugs": {
"url": "https://github.com/docpress/docpress/issues"
},
"keywords": [
"documentation",
"generator",
"markdown",
"painless",
"static",
"website"
],
"dependencies": {
"docpress-base": "~0.8.0",
"docpress-core": "~0.10.0",
"metalsmith-start": "rstacruz/metalsmith-start#e88a7cdbb20aac1db176c121b429008073d8e9eb",
"yargs": "^15.0.2"
},
"devDependencies": {
"browserify": "^16.5.0",
"coveralls": "^3.0.7",
"expect": "^24.9.0",
"git-update-ghpages": "1.3.0",
"markdown-it-decorate": "1.2.2",
"mocha": "^6.2.2",
"nixt": "^0.5.1",
"nyc": "^14.1.1",
"standard": "^14.3.1",
"standard-version": "^8.0.1",
"uglifyify": "^5.0.2"
},
"scripts": {
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"deploy": "bin/docpress b && git-update-ghpages -b master docpress/docpress.github.io _docpress",
"lint": "standard",
"pretest": "npm run lint",
"test": "nyc mocha",
"release": "standard-version"
},
"license": "MIT",
"standard": {
"global": [
"before",
"describe",
"expect",
"it"
]
}
}