-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
33 lines (33 loc) · 1.05 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
{
"name": "dif-credential-manifest",
"description": "DIF Credential Manifest specification",
"version": "0.0.1",
"homepage": "http://identity.foundation/credential-manifest",
"license": "Apache 2",
"repository": {
"type": "git",
"url": "git://github.com/decentralized-identity/credential-manifest"
},
"dependencies": {
"markdown-it": "^9.1.0",
"spec-up": "^0.10.6"
},
"devDependencies": {
"ajv": "^8.10.0",
"ajv-formats": "^2.1.1",
"del-cli": "^4.0.1",
"markdown-it": "^12.3.2",
"mocha": "^9.2.2"
},
"scripts": {
"render": "npm run build",
"edit": "npm run dev",
"test": "mocha 'test/**/*.js'",
"build": "npm run clean && npm run resources && npm run build:specs",
"build:specs": "node -e \"require('spec-up')({ nowatch: true })\"",
"dev": "npm run clean && npm run resources && npm run dev:specs",
"dev:specs": "node -e \"require('spec-up')()\"",
"resources": "cp -r response build/. && cp -r application build/. && cp -r schemas build/.",
"clean": "del build && mkdir build"
}
}