-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.06 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
{
"name": "blockcerts-issuer-helper",
"version": "1.0.0",
"description": "JavaScript library for Node and the browser to help issue Blockcerts certificates.",
"repository": "https://github.com/AutherOrg/blockcerts-issuer-helper",
"author": "Guillaume Duveau <[email protected]>",
"license": "MIT",
"private": false,
"main": "dist/blockcerts-issuer-helper.js",
"scripts": {
"lint": "standard",
"test": "jest --runInBand",
"build": "webpack --mode production"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.5",
"@babel/runtime": "^7.7.6",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"jest": "^24.9.0",
"standard": "^14.3.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"standard": {
"ignore": [
"dist"
]
},
"dependencies": {
"ajv": "^6.10.2",
"crypto-js": "^3.1.9-1",
"isomorphic-fetch": "^2.2.1",
"jsonld": "^1.8.1",
"merkletreejs": "^0.1.7",
"uuid": "^3.3.3"
}
}