-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.66 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
{
"name": "bash-deploy",
"version": "3.1.0",
"description": "Deployment shell script",
"bin": {
"deploy": "./bin/deploy"
},
"files": [
"bin",
"LICENSE.txt",
"README.md"
],
"scripts": {
"docs": "npm run docs:clean && npm run docs:gen",
"docs:gen": "docco -o tmp/docs -e .sh bin/deploy && node process-docs.js && sleep 0.5 && touch docs/index.html",
"docs:clean": "rimraf docs",
"docs:serve": "node serve-docs.js",
"docs:watch": "onchange \"bin/deploy\" \"res/docs.*\" -- npm run docs:gen",
"readme": "npm run readme:build && npm run readme:doctoc",
"readme:build": "node build-readme.js",
"readme:doctoc": "doctoc --github --notitle --maxlevel 3 README.md",
"readme:watch": "onchange \"bin/deploy\" \"build-readme.js\" \"res/HEADER.md\" -- npm run readme",
"start": "concurrently \"npm run docs\" \"npm run readme\" && concurrently \"npm run docs:serve\" \"npm run docs:watch\" \"npm run readme:watch\"",
"version": "node update-version.js && git add bin/deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlphaHydrae/deploy.git"
},
"keywords": [
"deploy",
"shell"
],
"author": "Simon Oulevay (AlphaHydrae) <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlphaHydrae/deploy/issues"
},
"homepage": "https://github.com/AlphaHydrae/deploy#readme",
"devDependencies": {
"chalk": "^2.0.1",
"concurrently": "^3.5.0",
"docco": "^0.7.0",
"docker": "^1.0.0",
"doctoc": "^1.3.0",
"fs-extra": "^3.0.1",
"live-server": "^1.2.0",
"lodash": "^4.17.4",
"onchange": "^3.2.1",
"rimraf": "^2.6.1"
}
}