forked from ipfs-shipyard/is-ipfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.83 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
{
"name": "is-ipfs",
"version": "6.0.2",
"description": "A set of utilities to help identify IPFS resources on the web",
"keywords": [
"js-ipfs",
"ipns",
"gateway",
"dnslink",
"ipfs"
],
"homepage": "https://github.com/ipfs/is-ipfs",
"bugs": {
"url": "https://github.com/ipfs/is-ipfs/issues"
},
"license": "MIT",
"author": "Francisco Dias <francisco@baiodias.com> (http://franciscodias.net/)",
"leadMaintainer": "Marcin Rataj <lidel@lidel.org>",
"files": [
"src",
"dist"
],
"types": "./dist/src/index.d.ts",
"main": "src/index.js",
"browser": {
"fs": false
},
"repository": {
"type": "git",
"url": "https://github.com/ipfs/is-ipfs.git"
},
"scripts": {
"prepare": "aegir build --no-bundle",
"test:node": "aegir test --target node",
"test:browser": "aegir test --target browser",
"test": "aegir test",
"prepublishOnly": "aegir build",
"lint": "aegir ts -p check && aegir lint-package-json && aegir lint",
"release": "aegir release",
"release-minor": "aegir release --type minor",
"release-major": "aegir release --type major"
},
"dependencies": {
"iso-url": "^1.1.3",
"mafmt": "^10.0.0",
"multiaddr": "^10.0.0",
"multiformats": "^9.0.0",
"uint8arrays": "^3.0.0"
},
"devDependencies": {
"aegir": "^35.0.2",
"pre-commit": "^1.2.2",
"util": "^0.12.4"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"pre-commit": [
"test",
"lint"
],
"contributors": [
"Marcin Rataj <lidel@lidel.org>",
"Francisco Baio Dias <xicombd@gmail.com>",
"David Dias <daviddias.p@gmail.com>",
"Alan Shaw <alan.shaw@protocol.ai>",
"Alex Potsides <alex@achingbrain.net>",
"nginnever <ginneversource@gmail.com>",
"Hugo Dias <mail@hugodias.me>",
"Henrique Dias <hacdias@gmail.com>"
]
}