-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
42 lines (42 loc) · 890 Bytes
/
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
{
"name": "crypto-hashing",
"version": "1.0.0",
"description": "Hash functions for bitcoin and other cryptocurrencies",
"keywords": [
"hash160",
"hash256",
"ripemd160",
"sha1",
"sha256",
"sha512",
"bitcoin",
"cryptocurrency",
"hash"
],
"homepage": "https://github.com/cryptocoinjs/crypto-hashing",
"bugs": {
"url": "https://github.com/cryptocoinjs/crypto-hashing/issues"
},
"license": "MIT",
"files": [
"index.js"
],
"main": "./index.js",
"repository": {
"type": "git",
"url": "https://github.com/cryptocoinjs/crypto-hashing"
},
"scripts": {
"lint": "standard",
"test": "npm run lint && npm run unit",
"unit": "tape test/*.js"
},
"dependencies": {
"create-hash": "^1.1.2"
},
"devDependencies": {
"hash-test-vectors": "^1.3.2",
"standard": "^6.0.8",
"tape": "^4.5.1"
}
}