-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
57 lines (57 loc) · 1.46 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
{
"name": "ecies-parity",
"version": "0.1.1",
"description": "JavaScript Elliptic Curve Integrated Encryption Scheme Library - Based of Parity's implementation",
"main": "index.js",
"browser": "browser.js",
"scripts": {
"install": "node-gyp rebuild || exit 0",
"test": "ECCRYPTO_NO_FALLBACK=1 mocha && xvfb-run -a karma start",
"m": "mocha",
"k": "xvfb-run -a karma start",
"kc": "xvfb-run -a karma start --browsers Chromium",
"kf": "xvfb-run -a karma start --browsers Firefox"
},
"repository": {
"type": "git",
"url": "https://github.com/sigp/ecies-parity"
},
"keywords": [
"ecdh",
"ecies",
"parity",
"crypto",
"cryptography",
"secp256k1",
"elliptic",
"curve"
],
"author": "Age Manning <[email protected]>",
"bugs": {
"url": "https://github.com/sigp/ecies-parity/issues"
},
"homepage": "https://github.com/sigp/ecies-parity",
"devDependencies": {
"browserify": "16.5.0",
"buffer-equal": "^1.0.0",
"chai": "^4.2.0",
"jshint": "^2.10.3",
"karma": "^4.4.1",
"karma-browserify": "^5.3.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-firefox-launcher": "^1.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^6.2.2"
},
"dependencies": {
"acorn": "7.1.0",
"elliptic": "6.5.3",
"es6-promise": "^4.2.4",
"nan": "2.14.0"
},
"optionalDependencies": {
"secp256k1": "3.7.1"
}
}