-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
82 lines (82 loc) · 2.62 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
{
"name": "pull-stream-docs",
"version": "0.0.0",
"description": "pull stream ecosystem docs",
"main": "index.js",
"scripts": {
"test": "true",
"bundle": "browserify src -g envify -g uglifyify -p [ css-extract -o build/bundle.css ]",
"build:sync": "DEBUG=* node scripts sync",
"build:html": "node scripts html",
"build:js": "npm run --silent bundle -- -o build/bundle.js",
"build": "npm-run-all -s build:*",
"watch:sync": "chokidar 'scripts/sync.js' -c $(which node)' scripts sync'",
"watch:html": "chokidar 'scripts/*.js' -c $(which node)' scripts html'",
"watch:js": "budo src:bundle.js -d build --live -- -d",
"watch": "npm-run-all -p watch:*",
"start": "npm-run-all -s build:sync build:html watch",
"disc": "npm run --silent bundle -- --full-paths | discify --open",
"push": "gh-pages -d build -o deploy -b master",
"deploy:remote": "git remote add deploy [email protected]:pull-stream/pull-stream.github.io",
"deploy": "npm-run-all -s build push",
"travis": "if test \"$TRAVIS\" = \"true\" && test \"$TRAVIS_EVENT_TYPE\" != \"pull_request\" && test \"$TRAVIS_BRANCH\" = \"master\"; then npm run deploy; else npm run build; fi"
},
"browserify": {
"transform": [
"sheetify/transform",
"es2020",
"brfs"
]
},
"remarkConfig": {
"settings": {
"commonmark": true,
"bullet": "*"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ahdinosaur/pull-stream-docs.git"
},
"keywords": [],
"author": "Mikey <[email protected]> (http://dinosaur.is)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ahdinosaur/pull-stream-docs/issues"
},
"homepage": "https://github.com/ahdinosaur/pull-stream-docs#readme",
"devDependencies": {
"brfs": "^1.4.3",
"browserify": "^13.0.0",
"budo": "^8.1.0",
"cheerio": "^0.20.0",
"chokidar-cli": "^1.2.0",
"css-extract": "^1.1.0",
"disc": "^1.3.2",
"ecosystem-docs": "^1.1.1",
"envify": "^3.4.0",
"es2020": "^1.1.6",
"gh-pages": "^0.11.0",
"ghauth": "^3.2.0",
"npm-run-all": "^1.6.0",
"remark": "^4.2.2",
"remark-github": "^4.0.1",
"remark-highlight.js": "^3.1.0",
"remark-html": "^3.0.0",
"run-parallel": "^1.1.6",
"tape": "^4.5.1",
"uglifyify": "^3.0.1",
"watchify": "^3.7.0"
},
"dependencies": {
"array-find": "^1.0.0",
"hash-match": "^1.0.2",
"highlight.js": "^9.4.0",
"insert-css": "^1.1.0",
"inu": "^2.3.1",
"normalize.css": "^4.1.1",
"pull-pushable": "^2.0.0",
"pull-stream": "github:pull-stream/pull-stream",
"sheetify": "^5.0.1"
}
}