-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
47 lines (47 loc) · 1.13 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-js",
"version": "0.0.11",
"description": "Helper methods for ipfs-api",
"main": "ipfs.js",
"browserify": {
"transform": [
"brfs"
]
},
"scripts": {
"build": "./node_modules/.bin/browserify -s ipfs -e ./ipfs.js | tee dist/ipfs.js | ./node_modules/.bin/uglifyjs -m > dist/ipfs.min.js && cp dist/ipfs.js example/",
"test": "./node_modules/.bin/mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/ConsenSys/ipfs.js.git"
},
"homepage": "https://github.com/ConsenSys/ipfs.js",
"bugs": {
"url": "https://github.com/ConsenSys/ipfs.js/issues"
},
"keywords": [
"ipfs"
],
"author": "ConsenSys",
"license": "ISC",
"devDependencies": {
"brfs": "^1.4.1",
"browserify": "^11.0.1",
"chai": "^3.2.0",
"ipfsd-ctl": "0.3.3",
"mocha": "^2.2.5",
"uglify-js": "^2.4.24"
},
"dependencies": {
"bitcore": "^0.13.0",
"concat-stream": "^1.5.0",
"ipfs-api": "https://github.com/ckeenan/node-ipfs-api#concat-bin@2.3.2",
"vinyl": "^0.5.1"
},
"authors": [
"Jeff Scott Ward",
"Christian Lundkvist",
"Connor Keenan"
]
}