forked from multiformats/js-mafmt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.25 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
{
"name": "mafmt",
"version": "3.0.0",
"description": "A multiaddr validator",
"main": "src/index.js",
"scripts": {
"lint": "aegir-lint",
"build": "aegir-build",
"test": "aegir-test",
"test:node": "aegir-test node",
"test:browser": "aegir-test 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": "^11.0.2",
"chai": "^4.1.2",
"pre-commit": "^1.2.2"
},
"dependencies": {
"multiaddr": "^3.0.0"
},
"contributors": [
"David Dias <daviddias.p@gmail.com>",
"Jeromy <jeromyj@gmail.com>",
"Jeromy Johnson <why@ipfs.io>",
"dignifiedquire <dignifiedquire@gmail.com>",
"dmitriy ryajov <dryajov@dmitriys-MBP.HomeNET>"
]
}