-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
47 lines (47 loc) · 1.15 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
{
"name": "ecdsa",
"version": "0.7.0",
"description": "Elliptic Curve Cryptography Digital Signing",
"keywords": [
"cryptography",
"crypto",
"bitcoin",
"litecoin",
"elliptic",
"curve",
"digital",
"sign",
"signing"
],
"devDependencies": {
"coveralls": "^2.10.0",
"electron-mocha": "^0.6.3",
"istanbul": "^0.2.10",
"mocha": "^2.3.4",
"mocha-lcov-reporter": "0.0.1",
"secure-random": "^0.2.1",
"sinon": "^1.17.2",
"standard": "^5.4.1"
},
"repository": {
"url": "https://github.com/cryptocoinjs/ecdsa",
"type": "git"
},
"license": "MIT",
"main": "./lib/index.js",
"dependencies": {
"bigi": "^1.2.1",
"bip66": "^1.1.0",
"create-hmac": "^1.1.4",
"ecurve": "^1.0.0",
"typeforce": "^1.6.1"
},
"scripts": {
"browser-test": "electron-mocha",
"standard": "standard",
"test": "mocha --ui bdd",
"unit": "./node_modules/.bin/mocha",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --reporter list test/*.js",
"coveralls": "npm run-script coverage && node ./node_modules/.bin/coveralls < coverage/lcov.info"
}
}