-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathpackage.json
41 lines (41 loc) · 1.12 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
{
"name": "coinkey",
"version": "3.0.0",
"description": "JavaScript component for private keys, public keys, and addresess for crypto currencies such as Bitcoin, Litecoin, and Dogecoin",
"keywords": [
"cryptography",
"crypto",
"bitcoin",
"litecoin",
"elliptical",
"curve"
],
"license": "MIT",
"devDependencies": {
"coininfo": "^0.3.1",
"coveralls": "^2.10.0",
"istanbul": "^0.2.10",
"mocha": "*",
"mocha-lcov-reporter": "0.0.1",
"mochify": "^2.8.1",
"standard": "*"
},
"repository": {
"url": "https://github.com/cryptocoinjs/coinkey",
"type": "git"
},
"main": "./lib/coinkey.js",
"dependencies": {
"coinstring": "^2.0.0",
"eckey": "^1.0.0",
"inherits": "^2.0.1",
"secure-random": "^1.0.0"
},
"scripts": {
"browser-test": "mochify --wd -R spec",
"test": "standard && mocha",
"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"
}
}