-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
52 lines (52 loc) · 1.52 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
{
"name": "rhea",
"version": "3.0.3",
"description": "reactive AMQP 1.0 library",
"homepage": "http://github.com/amqp/rhea",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "http://github.com/amqp/rhea"
},
"browser": {
"fs": false,
"net": false,
"tls": false
},
"dependencies": {
"debug": "^4.3.3"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/mocha": "^9.0.0",
"@types/node": "10 -",
"browserify": "",
"eslint": "^7.32.0",
"minimist": "",
"mocha": "^9.1.4",
"nyc": "^15.1.0",
"require-self": "^0.2.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.5",
"uglify-js": "",
"ws": "^6.0.0"
},
"scripts": {
"lint": "eslint lib/*.js",
"test": "mocha --require ts-node/register ./test/*.ts",
"coverage": "nyc --reporter=json --reporter=lcov --reporter=text-summary npm run test",
"browserify": "browserify -r .:rhea -o dist/rhea.js && browserify -r .:rhea --standalone rhea-umd > dist/rhea-umd.js",
"run-examples": "require-self && mocha examples/test_examples.js",
"uglify": "uglifyjs --source-map --output dist/rhea.min.js dist/rhea.js",
"prepare": "npm run lint && npm run tsc",
"tsc": "tsc"
},
"keywords": [
"amqp",
"amqp10",
"amqp 1.0",
"messaging"
],
"main": "./lib/container.js",
"types": "./typings/index.d.ts"
}