-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 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
33
34
35
36
37
38
39
40
41
42
43
{
"name": "@docknetwork/prettyvc",
"description": "Render pretty verifiable credentials",
"version": "1.1.5",
"main": "lib/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/docknetwork/prettyvc"
},
"scripts": {
"lint": "eslint \"src/**/*.js\"",
"test": "jest --verbose ./tests",
"prepublish": "babel src --out-dir lib"
},
"babel": {
"targets": {
"node": "current"
},
"presets": [
"@babel/preset-env"
]
},
"author": "Sam Hellawell",
"dependencies": {
"identicon.js": "^2.3.3",
"jssha": "^3.2.0",
"qrcode": "^1.4.4"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"babel-jest": "24.5.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-sonarjs": "0.5.0",
"jest": "^27.3.1"
}
}