generated from Richienb/node-module-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 944 Bytes
/
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
{
"name": "cross-blob",
"version": "3.0.2",
"description": "Cross-platform Blob implementation for NodeJS and the Web.",
"repository": "https://github.com/Richienb/cross-blob.git",
"author": "Richie Bendall <[email protected]>",
"license": "MIT",
"type": "module",
"exports": {
"browser": "./browser.js",
"default": "./index.js"
},
"files": [
"index.js",
"index.d.ts",
"browser.js"
],
"engines": {
"node": "^12.20 || >=14.13"
},
"scripts": {
"lint": "xo",
"test": "xo && ava"
},
"keywords": [
"blob",
"cross",
"platform",
"node",
"browser",
"util",
"ponyfill",
"polyfill",
"universal",
"env",
"environment"
],
"dependencies": {
"blob-polyfill": "^7.0.20220408",
"fetch-blob": "^3.2.0"
},
"devDependencies": {
"ava": "^3.15.0",
"eslint-config-richienb": "^0.6.2",
"get-stream": "^6.0.1",
"is-blob": "^2.1.0",
"xo": "^0.40.3"
},
"xo": {
"extends": "richienb"
}
}