-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
36 lines (36 loc) · 1.03 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
34
35
36
{
"name": "vc-api",
"version": "0.0.3",
"description": "Verifiable Credential API",
"main": "index.js",
"scripts": {
"build": "openapi bundle *.yml --output ./api/bundles/ && openapi join ./api/bundles/*.yml --prefix-tags-with-filename && mv ./openapi.yml ./api/vc-api.yaml",
"serve": "http-server ./api --cors",
"serveIndex": "http-server . --cors",
"lint": "openapi lint *.yml --extends recommended",
"eslint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/w3c-ccg/vc-api.git"
},
"keywords": [
"VC",
"DID",
"W3C"
],
"author": "[email protected]",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/w3c-ccg/vc-api/issues"
},
"homepage": "https://github.com/w3c-ccg/vc-api#readme",
"devDependencies": {
"@redocly/cli": "^1.0.0-beta.102",
"eslint": "^8.26.0",
"eslint-config-digitalbazaar": "^4.1.0",
"eslint-plugin-jsdoc": "^39.3.25",
"eslint-plugin-unicorn": "^44.0.2",
"http-server": "^14.1.1"
}
}