-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.1 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.1 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@stomp/rx-stomp",
"version": "2.5.0-beta.1",
"description": "RxJS STOMP client for Javascript and Typescript",
"scripts": {
"clean": "rm -rf bundles esm6",
"rollup": "rollup -c --bundleConfigAsCjs && rm -f bundles/*.d.ts",
"build": "npm run clean && tsc && npm run rollup",
"test": "c8 playwright test --project=node",
"lint": "eslint 'src/**/*.ts' 'spec/**/*.ts'",
"prepare": "husky",
"prepublishOnly": "npm run lint && playwright test && npm run build",
"prettier": "prettier --write 'src/**/*.ts' 'spec/**/*.ts'"
},
"lint-staged": {
"{src,spec}/**/*.ts": [
"prettier --write",
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/stomp-js/rx-stomp.git"
},
"keywords": [
"STOMP",
"RabbitMQ",
"ActiveMQ",
"Websocket",
"messaging",
"queue",
"RxJS",
"SockJS"
],
"author": "deepak@kreatio.com",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/stomp-js/rx-stomp/issues"
},
"homepage": "https://github.com/stomp-js/rx-stomp#readme",
"peerDependencies": {
"@stomp/stompjs": "^7.2.0",
"rxjs": "^7.2.0",
"uuid": ">=9.0.0 <15.0.0"
},
"devDependencies": {
"@playwright/test": "^1.52.0",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-sucrase": "^5.0.2",
"@rollup/plugin-terser": "^1.0.0",
"@types/sinon": "^17.0.4",
"@types/uuid": "^11.0.0",
"c8": "^11.0.0",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.6.2",
"rollup": "^4.50.2",
"sinon": "^19.0.5",
"typescript": "^5.9.2",
"typescript-eslint": "^8.59.1"
},
"type": "module",
"exports": "./esm6/index.js",
"main": "./esm6/index.js",
"browser": "bundles/rx-stomp.umd.js",
"typings": "index.d.ts",
"sideEffects": false,
"c8": {
"include": [
"src/**/*.ts"
],
"exclude": [
"spec/**"
],
"reporter": [
"text",
"lcov",
"html"
],
"all": true
}
}