-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.02 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.02 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
{
"private": true,
"name": "stompit2",
"description": "STOMP client library",
"author": "Graham Daws",
"license": "MIT",
"scripts": {
"lint": "eslint src test --quiet",
"test": "tsc --noEmit && jest --coverage",
"rabbitmq": "node test/broker/rabbitmq/server.js",
"activemq": "node test/broker/activemq/server.js",
"preversion": "npm test",
"docs": "make docs"
},
"engines": {
"node": ">=12.16.1"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@tsconfig/node14": "^1.0.1",
"@types/jest": "^25.2.3",
"@types/node": "^12.12.54",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"dotenv": "^8.2.0",
"jest": "^26.3.0",
"mock-socket": "^9.0.3",
"ts-node": "^8.10.2",
"typedoc": "^0.22.11",
"typescript": "^4.0.2"
},
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/dist/"
]
}
}