forked from ipfs/js-ipfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 2.06 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
{
"name": "js-ipfs",
"version": "1.0.0",
"description": "JavaScript implementation of the IPFS specification",
"scripts": {
"postinstall": "lerna bootstrap",
"reset": "lerna run --parallel clean && rm -rf packages/*/node_modules node_modules",
"test": "lerna run --parallel test",
"test:node": "lerna run --parallel test:node",
"test:browser": "lerna run --parallel test:browser",
"test:webworker": "lerna run --parallel test:webworker",
"coverage": "lerna run --parallel coverage",
"build": "lerna run --parallel build",
"clean": "lerna run --parallel clean",
"lint": "lerna run --parallel lint",
"depcheck": "lerna run --parallel depcheck",
"release": "npm run update-contributors && lerna publish",
"release:rc": "lerna publish --canary --preid rc --dist-tag next",
"update-contributors": "aegir release --lint=false --test=false --bump=false --build=false --changelog=false --commit=false --tag=false --push=false --ghrelease=false --docs=false --publish=false"
},
"devDependencies": {
"lerna": "^3.20.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/js-ipfs.git"
},
"private": true,
"contributors": [
"achingbrain <alex@achingbrain.net>",
"David Dias <daviddias.p@gmail.com>",
"Friedel Ziegelmayer <dignifiedquire@gmail.com>",
"Stephen Whitmore <stephen.whitmore@gmail.com>",
"Alan Shaw <alan@tableflip.io>",
"Pedro Teixeira <i@pgte.me>",
"nginnever <ginneversource@gmail.com>",
"Volker Mische <volker.mische@gmail.com>",
"Dan Ordille <dordille@gmail.com>",
"Richard Schneider <makaretu@gmail.com>",
"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <victorbjelkholm@gmail.com>",
"Hugo Dias <hugomrdias@gmail.com>",
"JGAntunes <j.goncalo.antunes@gmail.com>",
"Marcin Rataj <lidel@lidel.org>",
"Richard Littauer <richard.littauer@gmail.com>",
"Mithgol <getgit@mithgol.ru>",
"Francisco Baio Dias <xicombd@gmail.com>",
"Diogo Silva <fsdiogo@gmail.com>",
"jbenet <juan@benet.ai>",
"Bernard Mordan <bernard@tableflip.io>"
]
}