-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
76 lines (76 loc) · 2.11 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
67
68
69
70
71
72
73
74
75
76
{
"name": "secp256k1-key-pair",
"version": "1.1.1-0",
"description": "",
"main": "lib",
"scripts": {
"build": "npm run build-webpack",
"build-webpack": "webpack",
"test": "npm run test-node",
"test-node": "cross-env NODE_ENV=test mocha --delay -t 30000 -A -R ${REPORTER:-spec} tests/test.js",
"test-karma": "karma start"
},
"repository": {
"type": "git",
"url": "https://github.com/digitalbazaar/secp256k1-key-pair.git"
},
"keywords": [
"Linked Data",
"JSON-LD",
"digital signatures",
"jsonld-signatures",
"jsonld"
],
"author": {
"name": "Digital Bazaar, Inc.",
"email": "[email protected]",
"url": "https://digitalbazaar.com/"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/digitalbazaar/secp256k1-key-pair/issues"
},
"homepage": "https://github.com/digitalbazaar/secp256k1-key-pair#readme",
"dependencies": {
"elliptic": "^6.5.0",
"node-forge": "^0.8.5"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.4.4",
"@babel/runtime": "^7.4.4",
"babel-loader": "^8.0.6",
"browserify": "^16.2.3",
"chai": "^4.2.0",
"core-js": "^2.6.4",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-digitalbazaar": "^2.0.0",
"jsonld-signatures": "^4.2.1",
"karma": "^4.1.0",
"karma-babel-preprocessor": "^8.0.0",
"karma-browserify": "^6.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^1.1.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.5",
"mocha": "^6.1.4",
"semver": "^6.0.0",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2",
"webpack-merge": "^4.2.1"
},
"browser": {
"crypto": false,
"bs58": false,
"base64url": false
}
}