-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.31 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
{
"name": "sse-observable",
"version": "0.0.4",
"description": "Fetch-based SSE client",
"keywords": [
"sse",
"server-sent",
"eventsource",
"events",
"pubsub",
"fetch"
],
"license": "ISC",
"author": "",
"exports": "./dist/sse-client.modern.js",
"main": "dist/index.js",
"umd:main": "dist/sse-client.umd.js",
"module": "dist/sse-client.module.js",
"source": "src/index.ts",
"files": [
"dist"
],
"scripts": {
"build": "microbundle",
"lint": "eslint src/**/*",
"publish": "npm run build && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish",
"test": "tape -r ts-node/register src/*.test.ts | tap-spec"
},
"dependencies": {
"mitt": "^2.1.0",
"pump": "^3.0.0",
"readable-web-to-node-stream": "^3.0.1",
"split2": "^3.2.2",
"through2": "^4.0.2"
},
"devDependencies": {
"@types/pump": "^1.1.1",
"@types/split2": "^2.1.6",
"@types/tape": "^4.13.0",
"@types/through2": "^2.0.36",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.18.0",
"microbundle": "^0.13.0",
"mississippi": "^4.0.0",
"tap-spec": "^5.0.0",
"tape": "^5.2.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}