-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
66 lines (66 loc) · 2.75 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "traceability-interop",
"version": "0.0.1",
"description": "An enterprise grade HTTP API for leveraging [W3C Decentralized Identifiers](https://www.w3.org/TR/did-core/) and [W3C Verifiable Credentials](https://www.w3.org/TR/vc-data-model/) with [W3C CCG Traceability Vocabulary](https://w3c-ccg.github.io/traceability-vocab/) and the [VC API](https://w3c-ccg.github.io/vc-api/) when possible.",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"shove": "git add -A; git commit -m 'chore: :rocket: testing ci'; git push origin main",
"clean": "npm run report:clean",
"report:generate": "newman run",
"postreport:generate": "npm run report:prepare",
"report:sanitize": "node ./docs/tutorials/report-generation/build-index.js --no-index",
"report:index": "node ./docs/tutorials/report-generation/build-index.js --no-sanitize",
"report:clean": "rm -rf ./docs/reports/*",
"postinstall": "lerna bootstrap",
"clean:lock": "npx lerna exec 'rm -rf package-lock.json node_modules'",
"install:clean": "npx lerna clean -y && rm -rf node_modules && npm i",
"install:ci": "npm ci --ignore-scripts && lerna link && lerna bootstrap",
"lint": "lerna run lint --stream",
"lint:docs": "eslint --ext .html docs --fix",
"format": "lerna run format --stream",
"format:docs": "prettier --write docs/**/*.html",
"validate-spec": "npx swagger-cli validate docs/openapi/openapi.yml",
"preserve": "npx swagger-cli bundle docs/openapi/openapi.yml -o docs/openapi/openapi.json --dereference",
"serve": "npx serve ./docs",
"testdata": "node ./tests/generate-testdata.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/w3c-ccg/traceability-interop.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/w3c-ccg/traceability-interop/issues"
},
"homepage": "https://github.com/w3c-ccg/traceability-interop#readme",
"devDependencies": {
"@digitalbazaar/did-method-key": "^5.1.0",
"@digitalbazaar/ed25519-signature-2018": "^4.0.0",
"@digitalbazaar/ed25519-verification-key-2018": "^4.0.0",
"@digitalbazaar/vc": "^6.0.1",
"@html-eslint/eslint-plugin": "^0.19.0",
"@html-eslint/parser": "^0.19.0",
"credentials-context": "^2.0.0",
"eslint": "^8.40.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"jsonld": "^8.1.1",
"jsonld-signatures": "^11.1.0",
"klona": "^2.0.6",
"prettier": "^2.8.8"
},
"dependencies": {
"@apidevtools/swagger-cli": "^4.0.4",
"lerna": "^6.6.2",
"newman": "^5.3.2",
"newman-reporter-htmlextra": "^1.22.11",
"yargs": "^17.7.2"
}
}