-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathpackage.json
129 lines (129 loc) · 3.9 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "ipfsd-ctl",
"version": "0.36.0",
"description": "Spawn IPFS Daemons, JS or Go",
"leadMaintainer": "Vasco Santos <vasco.santos@moxy.studio>",
"main": "src/index.js",
"scripts": {
"lint": "aegir lint",
"docs": "aegir docs",
"build": "aegir build",
"test": "aegir test -t node -t browser --no-cors",
"test:node": "aegir test -t node",
"test:browser": "aegir test -t browser --no-cors",
"release": "aegir release",
"release-minor": "aegir release --type minor",
"release-major": "aegir release --type major",
"coverage": "COVERAGE=true aegir coverage --timeout 50000",
"coverage-publish": "aegir coverage -u"
},
"browser": {
"hapi": false,
"glob": false,
"fs": false,
"joi": false,
"stream": "readable-stream",
"http": "stream-http",
"./src/utils/repo/nodejs.js": "./src/utils/repo/browser.js",
"./src/utils/exec.js": false,
"./src/utils/find-ipfs-executable.js": false,
"./src/utils/tmp-dir.js": "./src/utils/tmp-dir-browser.js",
"./src/utils/run.js": false,
"./src/factory-daemon.js": false,
"./src/ipfsd-daemon.js": false,
"./src/endpoint/server.js": false,
"./src/endpoint/routes.js": false,
"./test/utils/df-config-nodejs.js": "./test/utils/df-config-browser.js"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=3.0.0"
},
"pre-push": [
"lint",
"test"
],
"keywords": [
"ipfs",
"node",
"daemon"
],
"contributors": [
"Alan Shaw <alan@tableflip.io>",
"Bret Comnes <bcomnes@gmail.com>",
"David Dias <daviddias.p@gmail.com>",
"Dmitriy Ryajov <dryajov@gmail.com>",
"FrauBienenstich <susanne.dewein@gmail.com>",
"Friedel Ziegelmayer <dignifiedquire@gmail.com>",
"Haad <haadcode@users.noreply.github.com>",
"Harlan T Wood <harlantwood@users.noreply.github.com>",
"Hugo Dias <mail@hugodias.me>",
"Jonathan <jkrone@vt.edu>",
"Kristoffer Ström <kristoffer@rymdkoloni.se>",
"Lars-Magnus Skog <ralphtheninja@riseup.net>",
"Michael Garvin <gar+gh@danger.computer>",
"Richard Littauer <richard.littauer@gmail.com>",
"Richard Schneider <makaretu@gmail.com>",
"Scott Hardy <scott.the.hardy@gmail.com>",
"Stephen Whitmore <stephen.whitmore@gmail.com>",
"Vasco Santos <vasco.santos@ua.pt>",
"Vasco Santos <vasco.santos@moxy.studio>",
"Volker Mische <volker.mische@gmail.com>",
"edsilv <e.silverton@gmail.com>",
"greenkeeperio-bot <support@greenkeeper.io>",
"haad <haad@headbanggames.com>",
"haadcode <haadcode@headbanggames.com>",
"jbenet <juan@benet.ai>",
"tcme <hi@this-connect.me>",
"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <victorbjelkholm@gmail.com>"
],
"license": "MIT",
"dependencies": {
"async": "^2.6.0",
"boom": "^7.2.0",
"debug": "^3.1.0",
"detect-node": "^2.0.3",
"dexie": "^1.5.1",
"hapi": "^16.6.2",
"hat": "0.0.3",
"ipfs-api": "^22.0.0",
"joi": "^13.1.2",
"lodash.clone": "^4.5.0",
"lodash.defaults": "^4.2.0",
"lodash.defaultsdeep": "^4.6.0",
"multiaddr": "^5.0.0",
"once": "^1.4.0",
"readable-stream": "^2.3.6",
"rimraf": "^2.6.2",
"safe-json-parse": "^4.0.0",
"safe-json-stringify": "^1.1.0",
"shutdown": "~0.3.0",
"stream-http": "^2.8.1",
"subcomandante": "^1.0.5",
"superagent": "^3.8.2",
"truthy": "0.0.1"
},
"devDependencies": {
"aegir": "^13.0.6",
"chai": "^4.1.2",
"cross-env": "^5.1.4",
"detect-port": "^1.2.2",
"dirty-chai": "^2.0.1",
"go-ipfs-dep": "0.4.15",
"ipfs": "~0.28.2",
"is-running": "1.0.5",
"mkdirp": "^0.5.1",
"proxyquire": "^2.0.1",
"sinon": "^4.5.0",
"superagent-mocker": "~0.5.2",
"supertest": "^3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/js-ipfsd-ctl.git"
},
"bugs": {
"url": "https://github.com/ipfs/js-ipfsd-ctl/issues"
},
"homepage": "https://github.com/ipfs/js-ipfsd-ctl"
}