-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·48 lines (48 loc) · 1.18 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
{
"name": "@rangermauve/fetch-event-source",
"version": "1.0.3",
"description": "Implements the EventSource API on top of `fetch()`",
"type": "module",
"exports": {
".": {
"import": "./fetch-event-source.js",
"require": "./index.cjs",
"default": "./fetch-event-source.js"
}
},
"files": [
"./fetch-event-source.js",
"./index.cjs",
"LICENSE",
"README.md"
],
"standard": {
"parser": "@babel/eslint-parser"
},
"scripts": {
"test": "node test.js",
"build": "rollup --format cjs ./fetch-event-source.js > index.cjs",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RangerMauve/fetch-event-source.git"
},
"keywords": [
"fetch",
"eventsource",
"event-stream"
],
"author": "rangermauve <[email protected]> (https://mauve.moe/)",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/RangerMauve/fetch-event-source/issues"
},
"homepage": "https://github.com/RangerMauve/fetch-event-source#readme",
"devDependencies": {
"@babel/eslint-parser": "^7.15.4",
"make-fetch": "^2.3.1",
"rollup": "^2.78.0",
"tape": "^5.3.1"
}
}