-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 985 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 985 Bytes
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
{
"name": "base58",
"version": "0.0.1",
"description": "Fixed length base 58 encoding / decoding",
"keywords": [
"base58",
"bitcoin",
"crypto",
"crytography",
"decode",
"decoding",
"encode",
"encoding",
"litecoin"
],
"devDependencies": {
"coveralls": "^2.11.2",
"hat": "0.0.3",
"istanbul": "^0.2.10",
"jshint": "2.5.1",
"mocha": "^1.21.4",
"mocha-lcov-reporter": "0.0.1",
"mochify": "~0.4.2"
},
"repository": {
"url": "http://github.com/cardinfolink/base58",
"type": "git"
},
"main": "./lib/base58.js",
"scripts": {
"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",
"jshint": "./node_modules/.bin/jshint --config jshint.json lib/*.js ; true",
"test": "npm run-script unit",
"unit": "./node_modules/.bin/mocha"
}
}