-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
{
"name": "ipfs-provider",
"version": "2.1.0",
"description": "Connect to IPFS via an available provider",
"main": "src/index.js",
"files": [
"src",
"dist"
],
"scripts": {
"lint": "aegir lint",
"release": "npm test && aegir release --test false",
"release-minor": "npm test && aegir release --type minor --test false",
"release-major": "npm test && aegir release --type major --test false",
"build": "aegir build",
"test": "jest --verbose ./test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs-shipyard/ipfs-provider.git"
},
"keywords": [
"ipfs",
"provider"
],
"author": "Diogo Silva <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ipfs-shipyard/ipfs-provider/issues"
},
"homepage": "https://github.com/ipfs-shipyard/ipfs-provider#readme",
"dependencies": {
"iso-url": "^1.1.5",
"merge-options": "^3.0.4"
},
"devDependencies": {
"aegir": "^35.0.2",
"ipfs-http-client": "^52.0.1",
"jest": "^27.0.6"
},
"contributors": [
"Marcin Rataj <[email protected]>",
"Diogo Silva <[email protected]>",
"Henrique Dias <[email protected]>",
"Rafael Ramalho <[email protected]>"
]
}