-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.28 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
{
"name": "@dropb/sse-channels",
"version": "0.6.1",
"description": "Server-sent events middleware",
"keywords": [
"sse",
"server-sent-events",
"eventsource"
],
"author": {
"name": "kukhariev",
"email": "q_h@inbox.ru"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kukhariev/sse-channels.git"
},
"license": "MIT",
"engines": {
"node": ">= 12.22.0"
},
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"demo": "node examples/",
"build": "npm run lint && npm run clean && npm run build-ts",
"test": "mocha",
"test:watch": "mocha --watch",
"build-ts": "tsc --project tsconfig.build.json",
"lint": "eslint -c .eslintrc.js --ext .ts src",
"preversion": "npm run build",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"@types/chai": "4.3.4",
"@types/eventsource": "1.1.10",
"@types/mocha": "9.1.1",
"@types/node": "12.20.55",
"@typescript-eslint/eslint-plugin": "5.42.1",
"@typescript-eslint/parser": "5.42.1",
"chai": "4.3.7",
"eslint": "8.27.0",
"eventsource": "2.0.2",
"mocha": "9.2.2",
"rimraf": "3.0.2",
"ts-node": "10.9.1",
"typescript": "4.8.4"
}
}