-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.46 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
{
"name": "rhea",
"version": "1.0.24",
"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": "0.8.0 - 3.5.0"
},
"devDependencies": {
"@types/debug": "^0.0.30",
"@types/mocha": "^5.2.0",
"@types/node": "^8.0.37",
"browserify": "",
"eslint": "^4.19.1",
"minimist": "",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"require-self": "^0.2.1",
"ts-node": "^7.0.0",
"typescript": "^3.0.1",
"uglify-js": "",
"ws": "^6.0.0",
"wtfnode": "^0.8.4"
},
"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",
"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",
"messaging"
],
"main": "./lib/container.js",
"types": "./typings/index.d.ts"
}