-
Notifications
You must be signed in to change notification settings - Fork 95
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.79 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.79 KB
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
63
64
65
66
67
68
{
"name": "@stomp/stompjs",
"version": "7.4.0-beta.2",
"description": "STOMP client for Javascript and Typescript",
"scripts": {
"clean": "rm -rf bundles esm6",
"rollup": "rollup -c && rm -rf bundles/esm6/",
"build": "npm run clean && npx tsc && npm run rollup && rm -rf bundles/compatibility bundles/*.d.ts && date",
"test": "playwright test --project=node",
"lint": "eslint",
"prettier": "prettier --write .",
"prepublishOnly": "npm run lint && npm run build && playwright test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stomp-js/stompjs.git"
},
"keywords": [
"STOMP",
"RabbitMQ",
"ActiveMQ",
"Websocket",
"messaging",
"queue",
"SockJS"
],
"author": "deepak@kreatio.com",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/stomp-js/stompjs/issues"
},
"homepage": "https://github.com/stomp-js/stompjs#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.59.1",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.1.4",
"@types/sinon": "^21.0.1",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"onchange": "^7.1.0",
"prettier": "^3.6.2",
"rollup": "^4.50.2",
"sinon": "^21.1.2",
"ts-loader": "^9.5.4",
"tslib": "^2.8.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.59.1",
"ws": "^8.18.3"
},
"type": "module",
"exports": {
".": {
"require": {
"types": "./index.d.ts",
"default": "./bundles/stomp.umd.js"
},
"import": {
"types": "./index.d.ts",
"default": "./esm6/index.js"
}
}
},
"main": "./bundles/stomp.umd.js",
"browser": "./bundles/stomp.umd.js",
"typings": "index.d.ts",
"sideEffects": false
}