-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
32 lines (32 loc) · 1 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
{
"name": "dif-presentation-exchange",
"description": "DIF Presentation Exchange",
"version": "2.0.0",
"homepage": "http://identity.foundation",
"license": "Apache 2",
"repository": {
"type": "git",
"url": "git://github.com/decentralized-identity/presentation-exchange"
},
"dependencies": {
"spec-up": "^0.10.6"
},
"devDependencies": {
"ace-custom-element": "1.6.5",
"ajv": "^8.10.0",
"ajv-formats": "^2.1.1",
"del-cli": "^4.0.1",
"mocha": "^10.1.0"
},
"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 submission build/. && cp -r playground build/. && cp -r schemas build/.",
"clean": "del build && mkdir build"
}
}