forked from valueflows/valueflows
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
16 lines (16 loc) · 790 Bytes
/
package.json
File metadata and controls
16 lines (16 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"scripts": {
"build": "mkdir -p .build && npm run build-index",
"build-index": "mdast -u mdast-slug -u mdast-autolink-headings -u mdast-html README.md -o .build/index.html",
"deploy-remote": "git remote add deploy git@github.com:valueflows/valueflo.ws; true",
"deploy-push": "git-directory-deploy --directory .build --repo deploy --branch master --verbose --ignore-removal --username valueflows --email bot@valueflo.ws",
"deploy": "npm run build && npm run deploy-remote && npm run deploy-push"
},
"dependencies": {
"git-directory-deploy": "git://github.com/ahdinosaur/git-directory-deploy#4d7ba873bdf77f73db40635364576d89239c7e97",
"mdast": "^2.1.0",
"mdast-autolink-headings": "^1.0.0",
"mdast-html": "^1.2.1",
"mdast-slug": "^2.0.0"
}
}