forked from multiformats/js-multihashing-async
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.08 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
71
72
73
74
{
"name": "multihashing-async",
"version": "0.4.7",
"description": "multiple hash functions",
"main": "lib/index.js",
"browser": {
"./src/crypto-sha1-2.js": "./src/crypto-sha1-2-browser.js"
},
"scripts": {
"babel": "babel dist -d lib",
"test": "aegir-test",
"test:browser": "aegir-test browser",
"test:node": "aegir-test node",
"lint": "aegir-lint",
"docs": "aegir-docs",
"release": "aegir-release --docs",
"release-minor": "aegir-release minor --docs",
"release-major": "aegir-release major --docs",
"build": "aegir-build",
"coverage": "aegir-coverage",
"coverage-publish": "aegir-coverage publish",
"bench": "node benchmarks/hash.js"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git://github.com/multiformats/js-multihashing-async.git"
},
"keywords": [
"multihash"
],
"author": "Juan Benet <[email protected]> (http://juan.benet.ai/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/multiformats/js-multihashing-async/issues"
},
"dependencies": {
"async": "^2.5.0",
"blakejs": "^1.1.0",
"js-sha3": "^0.6.1",
"multihashes": "~0.4.12",
"murmurhash3js": "^3.0.1",
"nodeify": "^1.0.1"
},
"devDependencies": {
"aegir": "^11.0.2",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"benchmark": "^2.1.4",
"chai": "^4.1.2",
"dirty-chai": "^2.0.1",
"pre-commit": "^1.2.2"
},
"engines": {
"node": ">=4.0.0",
"npm": ">=3.0.0"
},
"homepage": "https://github.com/multiformats/js-multihashing-async",
"contributors": [
"David Dias <[email protected]>",
"David Dias <[email protected]>",
"Dmitriy Ryajov <[email protected]>",
"Friedel Ziegelmayer <[email protected]>",
"Harlan T Wood <[email protected]>",
"Juan Batiz-Benet <[email protected]>",
"Mitar <[email protected]>",
"Pedro Teixeira <[email protected]>",
"Richard Littauer <[email protected]>",
"npm-to-cdn-bot (by Forbes Lindesay) <[email protected]>"
]
}