-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.07 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
{
"name": "fetch-event-source",
"description": "Fetch implementation of EventSource with more functionality such as HTTP headers and support for Node.js.",
"version": "1.0.0-alpha.2",
"license": "MIT",
"keywords": [
"sse"
],
"main": "./index.js",
"module": "./index.es.js",
"types": "./types/index.d.ts",
"scripts": {
"prebuild": "rimraf -rf dist/*",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c build/rollup.config.js",
"test": "jest",
"testw": "jest --watchAll",
"prepublishOnly": "npm build"
},
"dependencies": {
"abort-controller": "^3.0.0",
"event-target-shim": "^5.0.1",
"is-absolute-url": "^3.0.3",
"node-fetch": "^2.6.1",
"web-streams-polyfill": "^3.0.0"
},
"devDependencies": {
"@babel/compat-data": "^7.11.0",
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/plugin-proposal-private-methods": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@babel/register": "^7.10.5",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-inject": "^4.0.2",
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/jest": "^26.0.9",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "^7.6.0",
"eslint-config-airbnb": "18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"jest": "^26.3.0",
"rimraf": "^3.0.2",
"rollup": "^2.28.2",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-node-externals": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.0.3"
},
"resolutions": {
"terser": "5.3.4"
},
"files": [
"types/**.*",
"*.js",
"*.map"
],
"jest": {
"testEnvironment": "node"
}
}