forked from ipfs-inactive/js-ipfs-http-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.54 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
{
"name": "ipfs-api",
"version": "2.11.0",
"description": "A client library for the IPFS API",
"main": "src/index.js",
"dependencies": {
"merge-stream": "^1.0.0",
"multiaddr": "^1.0.0",
"multipart-stream": "^2.0.0",
"ndjson": "^1.4.3",
"qs": "^6.0.0",
"require-dir": "^0.3.0",
"vinyl": "^1.1.0",
"vinyl-fs-browser": "^2.1.1-1",
"vinyl-multipart-stream": "^1.2.6",
"wreck": "^7.0.0"
},
"engines": {
"node": ">=4.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/ipfs/js-ipfs-api"
},
"devDependencies": {
"babel-core": "^6.1.21",
"babel-eslint": "^5.0.0-beta6",
"babel-loader": "^6.2.0",
"babel-plugin-transform-runtime": "^6.1.18",
"babel-preset-es2015": "^6.0.15",
"babel-runtime": "^6.3.19",
"chai": "^3.4.1",
"concurrently": "^1.0.0",
"eslint-config-standard": "^4.4.0",
"eslint-plugin-standard": "^1.3.1",
"glob-stream": "5.3.1",
"gulp": "^3.9.0",
"gulp-bump": "^1.0.0",
"gulp-eslint": "^1.0.0",
"gulp-filter": "^3.0.1",
"gulp-git": "^1.6.0",
"gulp-load-plugins": "^1.0.0",
"gulp-mocha": "^2.1.3",
"gulp-size": "^2.0.0",
"gulp-tag-version": "^1.3.0",
"gulp-util": "^3.0.7",
"https-browserify": "0.0.1",
"ipfsd-ctl": "^0.8.0",
"json-loader": "^0.5.3",
"karma": "^0.13.11",
"karma-chrome-launcher": "^0.2.1",
"karma-firefox-launcher": "^0.1.7",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.1.1",
"karma-sauce-launcher": "^0.3.0",
"karma-webpack": "^1.7.0",
"mocha": "^2.3.3",
"pre-commit": "^1.0.6",
"raw-loader": "^0.5.1",
"rimraf": "^2.4.5",
"run-sequence": "^1.1.4",
"semver": "^5.1.0",
"stream-equal": "^0.1.7",
"stream-http": "^2.1.0",
"uglify-js": "^2.4.24",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"webpack-stream": "^3.1.0"
},
"scripts": {
"test": "gulp test",
"test:node": "gulp test:node",
"test:browser": "gulp test:browser",
"lint": "gulp lint",
"build": "gulp build"
},
"pre-commit": [
"lint",
"test"
],
"keywords": [
"ipfs"
],
"author": "Matt Bell <[email protected]>",
"contributors": [
"Travis Person <[email protected]>",
"Jeromy Jonson <[email protected]>",
"David Dias <[email protected]>",
"Juan Benet <[email protected]>",
"Friedel Ziegelmayer <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ipfs/js-ipfs-api/issues"
},
"homepage": "https://github.com/ipfs/js-ipfs-api"
}