-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.64 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
{
"name": "ts-sse",
"version": "0.0.6",
"description": "Utilities for Server-Sent Events that adopts the HTML Spec Standard for the EventSource Web API.",
"main": "./lib/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"clean": "rm -rf ./lib/",
"cm": "cz",
"lint": "eslint ./src/ --fix",
"release": "npm run build && changeset publish",
"version-packages": "changeset version",
"test:watch": "jest --watch",
"test": "jest --coverage",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michaelangeloio/ts-sse"
},
"license": "MIT",
"author": {
"name": "Michael Angelo Rivera",
"email": "[email protected]",
"url": "https://github.com/michaelangeloio"
},
"engines": {
"node": ">=12.0"
},
"keywords": [
"ts-sse",
"typescript",
"sse",
"server sent events",
"eventsource"
],
"bugs": {
"url": "https://github.com/michaelangeloio/ts-sse/issues"
},
"homepage": "https://github.com/michaelangeloio/ts-sse#readme",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/jest": "^29.5.4",
"@types/node": "^20.5.9",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.4",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"lint-staged": {
"*.ts": "eslint --cache --cache-location .eslintcache --fix"
}
}