-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
49 lines (49 loc) · 1.45 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
{
"name": "security-context",
"version": "4.0.1-0",
"description": "Security Context",
"main": "js",
"module": "./dist/module.js",
"files": [
"contexts",
"dist/module.js",
"js/constants.js",
"js/index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/w3c-ccg/security-vocab"
},
"bugs": {
"url": "https://github.com/w3c-ccg/security-vocab/issues"
},
"homepage": "https://w3c-ccg.github.io/security-vocab/",
"devDependencies": {
"@mattrglobal/jsonld-signatures-bbs": "0.7.1-unstable.2673a0a",
"@transmute/did-key-ed25519": "^0.2.1-unstable.28",
"@transmute/did-key-web-crypto": "^0.2.1-unstable.28",
"@transmute/ed25519-signature-2018": "^0.1.1-unstable.12",
"@transmute/json-web-signature-2020": "^1.1.0",
"@transmute/jsonld-document-loader": "^0.2.0",
"@transmute/vc.js": "^0.1.1-unstable.12",
"babel-eslint": "^10.1.0",
"eslint": "^7.12.0",
"eslint-config-digitalbazaar": "^2.6.0",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3",
"json-loader": "^0.5.7",
"jsonld-lint-cli": "^0.3.0",
"jsonld-signatures": "^6.0.0",
"rollup": "^1.11.3",
"rollup-plugin-commonjs": "^9.3.4",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.2"
},
"scripts": {
"prepublish": "npm run build",
"build": "webpack && rollup -c",
"lint": "eslint \"**/*.js\" && jsonld-lint contexts",
"lint:fix": "eslint \"**/*.js\" --fix",
"test": "jest"
}
}