@data-loom/node-fetch 0.0.2-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +9 -0
- package/README.md +1 -0
- package/browser.js +22 -0
- package/lib/index.es.js +1792 -0
- package/lib/index.js +1801 -0
- package/lib/index.mjs +1790 -0
- package/package.json +78 -0
package/package.json
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@data-loom/node-fetch",
|
|
3
|
+
"version": "0.0.2-alpha.1",
|
|
4
|
+
"description": "A light-weight module that brings window.fetch to node.js",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"fetch",
|
|
7
|
+
"http",
|
|
8
|
+
"promise"
|
|
9
|
+
],
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"author": "Dataloom",
|
|
12
|
+
"main": "lib/index.js",
|
|
13
|
+
"browser": "./browser.js",
|
|
14
|
+
"files": [
|
|
15
|
+
"lib/index.js",
|
|
16
|
+
"lib/index.mjs",
|
|
17
|
+
"lib/index.es.js",
|
|
18
|
+
"browser.js"
|
|
19
|
+
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "cross-env BABEL_ENV=rollup rollup -c",
|
|
22
|
+
"coverage": "cross-env BABEL_ENV=coverage nyc --reporter json --reporter text mocha -R spec test/test.js && codecov -f coverage/coverage-final.json",
|
|
23
|
+
"lint": "exit 0",
|
|
24
|
+
"prepare": "npm run build",
|
|
25
|
+
"report": "cross-env BABEL_ENV=coverage nyc --reporter lcov --reporter text mocha -R spec test/test.js",
|
|
26
|
+
"test": "cross-env BABEL_ENV=test mocha --require babel-register --throw-deprecation test/test.js",
|
|
27
|
+
"test:cov": "exit 0"
|
|
28
|
+
},
|
|
29
|
+
"release": {
|
|
30
|
+
"branches": [
|
|
31
|
+
"+([0-9]).x",
|
|
32
|
+
"main",
|
|
33
|
+
"next",
|
|
34
|
+
{
|
|
35
|
+
"name": "beta",
|
|
36
|
+
"prerelease": true
|
|
37
|
+
}
|
|
38
|
+
]
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"whatwg-url": "^5.0.0"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@ungap/url-search-params": "^0.1.2",
|
|
45
|
+
"abort-controller": "^1.1.0",
|
|
46
|
+
"abortcontroller-polyfill": "^1.3.0",
|
|
47
|
+
"babel-core": "^6.26.3",
|
|
48
|
+
"babel-plugin-istanbul": "^4.1.6",
|
|
49
|
+
"babel-plugin-transform-async-generator-functions": "^6.24.1",
|
|
50
|
+
"babel-polyfill": "^6.26.0",
|
|
51
|
+
"babel-preset-env": "1.4.0",
|
|
52
|
+
"babel-register": "^6.16.3",
|
|
53
|
+
"chai": "^3.5.0",
|
|
54
|
+
"chai-as-promised": "^7.1.1",
|
|
55
|
+
"chai-iterator": "^1.1.1",
|
|
56
|
+
"chai-string": "~1.3.0",
|
|
57
|
+
"codecov": "3.3.0",
|
|
58
|
+
"cross-env": "^5.2.0",
|
|
59
|
+
"eslint": "^8",
|
|
60
|
+
"form-data": "^2.3.3",
|
|
61
|
+
"is-builtin-module": "^1.0.0",
|
|
62
|
+
"mocha": "^5.0.0",
|
|
63
|
+
"nyc": "11.9.0",
|
|
64
|
+
"parted": "^0.1.1",
|
|
65
|
+
"promise": "^8.0.3",
|
|
66
|
+
"resumer": "0.0.0",
|
|
67
|
+
"rollup": "^0.63.4",
|
|
68
|
+
"rollup-plugin-babel": "^3.0.7",
|
|
69
|
+
"string-to-arraybuffer": "^1.0.2",
|
|
70
|
+
"teeny-request": "3.7.0"
|
|
71
|
+
},
|
|
72
|
+
"engines": {
|
|
73
|
+
"node": "4.x || >=6.0.0"
|
|
74
|
+
},
|
|
75
|
+
"publishConfig": {
|
|
76
|
+
"access": "public"
|
|
77
|
+
}
|
|
78
|
+
}
|