forked from fanout/reconnecting-eventsource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.78 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
{
"name": "@disruptops/reconnecting-eventsource",
"version": "1.1.0",
"description": "wrapper library around the JavaScript EventSource API to ensure it maintains a connection to the server.",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib dist",
"build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min",
"build:commonjs": "cross-env BUILD_TARGET=commonjs webpack",
"build:umd": "cross-env BUILD_TARGET=umd webpack",
"build:umd:min": "cross-env BUILD_TARGET=umd-min webpack",
"check:src": "npm run lint",
"lint": "eslint src",
"prepublishOnly": "npm run clean && npm run check:src && npm run build",
"test": "npm run build && node test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/disruptops/reconnecting-eventsource.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"author": "Fanout, Inc. <info@fanout.io>",
"license": "MIT",
"contributors": [
{
"name": "Katsuyuki Ohmuro",
"email": "harmony7@pex2.jp"
}
],
"keywords": [
"fanout",
"eventsource",
"sse",
"realtime",
"push"
],
"bugs": {
"url": "https://github.com/fanout/reconnecting-eventsource/issues"
},
"homepage": "https://github.com/fanout/reconnecting-eventsource#readme",
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-preset-env": "^1.7.0",
"cross-env": "^5.0.1",
"eslint": "^6.6.0",
"eventsource": "^1.0.7",
"rimraf": "^2.6.1",
"sse": "0.0.8",
"stoppable": "^1.1.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
}
}