forked from cryptocoinjs/secp256k1-node
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
70 lines (70 loc) · 1.61 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
{
"name": "secp256r1",
"version": "0.0.3",
"description": "This module provides native bindings to ecdsa secp256r1 functions",
"keywords": [
"ec",
"ecdh",
"ecdsa",
"secp256r1"
],
"bugs": {
"url": "https://github.com/xiawu/secp256r1-node/issues"
},
"license": "MIT",
"author": "xia wu<xiawu@zeuux.org>",
"files": [
"lib",
"src",
"API.md",
"elliptic.js",
"index.js",
"js.js",
"utils/has_lib.sh"
],
"main": "./index.js",
"repository": {
"type": "git",
"url": "https://github.com/xiawu/secp256r1-node.git"
},
"scripts": {
"coverage": "RANDOM_TESTS_REPEAT=1 nyc tape test/index.js",
"coverage-lcov": "npm run coverage && nyc report -r lcov",
"lint": "standard",
"test": "npm run lint && npm run unit",
"test:browser": "karma start karma.conf.js",
"unit": "tape test/index.js"
},
"dependencies": {
"bip66": "^1.1.3",
"bn.js": "^4.11.3",
"create-hash": "^1.1.2",
"drbg.js": "^1.0.1",
"elliptic": "^6.2.3",
"nan": "^2.2.1",
"safe-buffer": "^5.1.0"
},
"devDependencies": {
"bignum": "^0.13.0",
"browserify": "^14.4.0",
"karma": "^1.3.0",
"karma-browserify": "^5.0.4",
"karma-chrome-launcher": "^2.0.0",
"karma-detect-browsers": "^2.1.0",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-tap": "^3.1.1",
"node-gyp": "^3.3.1",
"nyc": "^11.0.2",
"standard": "*",
"tape": "^4.5.1",
"xorshift.js": "^1.0.3"
},
"engines": {
"node": ">=4.0.0"
},
"gypfile": true,
"browser": {
"./index.js": "./elliptic.js"
}
}