This repository has been archived by the owner on Aug 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
65 lines (65 loc) · 1.61 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
{
"name": "filecoin-api-client",
"version": "0.5.2",
"description": "API client for Filecoin",
"main": "src/index.js",
"browser": {
"./src/lib/form-data.js": "./src/lib/form-data.browser.js"
},
"scripts": {
"build": "webpack",
"test": "npm run test:unit",
"test:unit": "ava --verbose test/unit/**/*.test.js test/unit/**/**/*.test.js",
"test:e2e": "node test/e2e/_warn.js && ava --verbose test/e2e/**/*.test.js",
"coverage": "nyc --reporter=lcov --reporter=text npm run test:unit",
"lint": "standard"
},
"author": "Alan Shaw",
"license": "(Apache-2.0 OR MIT)",
"dependencies": {
"explain-error": "^1.0.4",
"form-data": "^2.5.0",
"is-buffer": "^2.0.3",
"it-to-stream": "^0.1.1",
"iterable-ndjson": "^1.1.0",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"abort-controller": "^3.0.0",
"ava": "^2.2.0",
"cids": "^0.7.1",
"ipfs-unixfs": "^0.1.16",
"multiaddr": "^7.1.0",
"nyc": "^14.1.1",
"standard": "^14.1.0",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6"
},
"ava": {
"babel": false,
"compileEnhancements": false,
"failWithoutAssertions": false
},
"files": [
"src",
"dist"
],
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/filecoin-shipyard/js-filecoin-api-client.git"
},
"keywords": [
"Filecoin",
"FIL",
"API",
"HTTP",
"REST"
],
"bugs": {
"url": "https://github.com/filecoin-shipyard/js-filecoin-api-client/issues"
},
"homepage": "https://github.com/filecoin-shipyard/js-filecoin-api-client#readme"
}