-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 846 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 846 Bytes
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
{
"dependencies": {
"spec-up": "^0.10.8"
},
"name": "verifiable-trust-spec",
"version": "4.0",
"description": "Verifiable Trust v4 Specification",
"repository": {
"type": "git",
"url": "git+https://github.com/verana-labs/verifiable-trust-spec.git"
},
"license": "Creative Commons Attribution-ShareAlike 4.0",
"homepage": "https://github.com/verana-labs/verifiable-trust-spec",
"bugs": {
"url": "https://github.com/verana-labs/verifiable-trust-spec/issues"
},
"scripts": {
"render": "npm run build",
"edit": "npm run dev",
"build": "npm run clean && npm run build:specs",
"build:specs": "node -e \"require('spec-up')({ nowatch: true })\"",
"dev": "npm run clean && npm run dev:specs",
"dev:specs": "node -e \"require('spec-up')()\"",
"clean": "rm -rf build && mkdir build"
}
}