-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
64 lines (64 loc) · 1.33 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
63
64
{
"name": "stomp-protocol",
"version": "0.4.7",
"author": "Pierantonio Cangianiello",
"homepage": "https://github.com/pcan/node-stomp-protocol",
"license": "MIT",
"description": "STOMP Protocol for NodeJS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "tsc --sourcemap false --inlinesourcemap false",
"test": "nyc mocha"
},
"keywords": [
"stomp",
"protocol",
"websocket",
"broker"
],
"bugs": {
"url": "https://github.com/pcan/node-stomp-protocol/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/pcan/node-stomp-protocol.git"
},
"engines": {
"node": ">=7.0.0"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"devDependencies": {
"@types/chai": "^4.1",
"@types/chai-as-promised": "0.0.31",
"@types/mocha": "^5.2",
"@types/node": "^10",
"chai": "^4.1",
"chai-as-promised": "^7.1.1",
"istanbul": "^0.4.5",
"mocha": "^5.2",
"nyc": "^12.0",
"source-map-support": "^0.5",
"ts-node": "^3.2.0",
"typescript": "^3",
"@types/ws": "^5",
"ws": "^5"
},
"dependencies": {}
}