-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
84 lines (84 loc) · 2.28 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
{
"name": "minidocs",
"version": "4.2.3",
"description": "build a simple site for your documentation",
"main": "index.js",
"style": "components/styles/index.css",
"scripts": {
"link:minidocs": "npm link && npm link minidocs",
"start": "npm run link:minidocs && budo --dir examples/browser/ examples/browser/index.js:bundle.js --pushstate --live",
"lint": "standard",
"test": "npm run link:minidocs && tape tests/*.js | tap-spec",
"build:example": "cd example && browserify index.js -p yo-yoify -o bundle.js",
"deploy:example": "surge example minidocs-example.surge.sh",
"build": "browserify docs/index.js -p yo-yoify -o docs/bundle.js",
"deploy": "npm run build && surge site minidocs.surge.sh"
},
"bin": {
"minidocs": "bin/index.js"
},
"browserify": {
"transform": [
"./transform.js",
"sheetify/transform"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/freeman-lab/minidocs.git"
},
"keywords": [
"docs",
"documentation",
"site",
"build",
"component"
],
"author": "freeman-lab",
"license": "MIT",
"bugs": {
"url": "https://github.com/freeman-lab/minidocs/issues"
},
"homepage": "https://github.com/freeman-lab/minidocs#readme",
"dependencies": {
"async.applyeachseries": "^0.5.2",
"browserify": "^13.0.1",
"choo": "^3.0.1",
"create-html": "^1.0.0",
"css-extract": "^1.1.0",
"debug": "^2.2.0",
"each-async": "^1.1.1",
"execspawn": "^1.0.1",
"exit": "^0.1.2",
"github-avatar-url": "^1.0.0",
"highlight.js": "^9.2.0",
"insert-css": "^1.0.0",
"is-absolute": "^0.2.5",
"lodash.isarray": "^4.0.0",
"lodash.isobject": "^3.0.2",
"lodash.map": "^4.4.0",
"marked": "^0.3.5",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"parse-filepath": "^1.0.1",
"read-directory": "^1.2.0",
"rimraf": "^2.5.2",
"sheetify": "^5.0.2",
"sheetify-cssnext": "^1.0.7",
"slug": "^0.9.1",
"static-module": "^1.3.1",
"tar": "^2.2.1",
"tar-fs": "^1.13.2",
"through2": "^2.0.1",
"xtend": "^4.0.1",
"yo-yoify": "^2.0.1"
},
"devDependencies": {
"budo": "^8.1.0",
"debug": "^2.2.0",
"standard": "^6.0.8",
"tap-spec": "^4.1.1",
"tape": "^4.6.0",
"tape-run": "^2.1.4"
}
}