forked from multiformats/js-multihashing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.68 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
{
"name": "multihashing",
"version": "0.3.2",
"description": "multiple hash functions",
"main": "src/index.js",
"scripts": {
"test": "aegir test --webworker=false",
"test:browser": "aegir test browser --webworker=false",
"test:node": "aegir test node",
"lint": "aegir lint",
"release": "aegir release --webworker=false --dom",
"release-minor": "aegir release minor --webworker=false",
"release-major": "aegir release major --webworker=false",
"build": "aegir build",
"coverage": "aegir coverage",
"coverage-publish": "aegir-coverage publish",
"babel": "babel dist -d lib"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git://github.com/multiformats/js-multihashing.git"
},
"keywords": [
"multihash"
],
"author": "Juan Benet <juan@benet.ai> (http://juan.benet.ai/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/multiformats/js-multihashing/issues"
},
"dependencies": {
"blakejs": "^1.0.1",
"multihashes": "~0.4.4",
"webcrypto": "~0.1.0"
},
"devDependencies": {
"aegir": "^12.0.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^3.5.0",
"pre-commit": "^1.2.2"
},
"homepage": "https://github.com/multiformats/js-multihashing",
"contributors": [
"David Dias <daviddias.p@gmail.com>",
"David Dias <mail@daviddias.me>",
"Friedel Ziegelmayer <dignifiedquire@gmail.com>",
"Harlan T Wood <harlantwood@users.noreply.github.com>",
"Juan Benet <juan@benet.ai>",
"Richard Littauer <richard.littauer@gmail.com>",
"npm-to-cdn-bot (by Forbes Lindesay) <npmcdn-to-unpkg-bot@users.noreply.github.com>"
]
}