-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 742 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 742 Bytes
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
{
"name": "pushlet",
"version": "1.0.9",
"description": "A TypeScript SDK for subscribing to topics via Server-Sent Events (SSE).",
"main": "dist/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/usual2970/pushlet-sdk.git"
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"test": "jest",
"start": "node dist/index.js"
},
"keywords": [
"sse",
"sdk",
"typescript",
"subscription"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^27.0.0",
"jest": "^27.5.1",
"rimraf": "^6.0.1",
"ts-jest": "^27.0.0",
"typescript": "^4.5.0"
}
}