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
17 lines (17 loc) · 772 Bytes
/
package.json
File metadata and controls
17 lines (17 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"scripts": {
"build": "mkdir -p .build && npm run build-docs && npm run build-ns",
"build-docs": "mkdir -p .build/docs && cp README.md .build/docs/index.md",
"build-ns": "mkdir -p .build/ns && cp context.jsonld .build/ns/base.jsonld",
"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": "^1.3.0",
"mdast": "^2.1.0",
"mdast-autolink-headings": "^1.0.0",
"mdast-html": "^1.2.1",
"mdast-slug": "^2.0.0"
}
}