forked from multiformats/js-mafmt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.34 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
{
"name": "mafmt",
"version": "6.0.0",
"description": "A multiaddr validator",
"main": "src/index.js",
"scripts": {
"lint": "aegir lint",
"build": "aegir build",
"test": "aegir test",
"test:node": "aegir test --target node",
"test:browser": "aegir test --target browser",
"release": "aegir release",
"release-minor": "aegir release --type minor",
"release-major": "aegir release --type major",
"coverage": "aegir coverage",
"coverage-publish": "aegir coverage publish"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/whyrusleeping/js-mafmt.git"
},
"keywords": [
"multiaddr"
],
"author": "whyrusleeping",
"license": "MIT",
"bugs": {
"url": "https://github.com/whyrusleeping/js-mafmt/issues"
},
"homepage": "https://github.com/whyrusleeping/js-mafmt#readme",
"devDependencies": {
"aegir": "^13.0.6",
"chai": "^4.1.2",
"pre-commit": "^1.2.2"
},
"dependencies": {
"multiaddr": "^4.0.0"
},
"contributors": [
"Alan Shaw <[email protected]>",
"David Dias <[email protected]>",
"Jeromy <[email protected]>",
"Jeromy Johnson <[email protected]>",
"Maciej Krüger <[email protected]>",
"dignifiedquire <[email protected]>",
"dmitriy ryajov <[email protected]>"
]
}