-
Notifications
You must be signed in to change notification settings - Fork 0
/
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": "@onify/fake-amqplib",
"version": "3.2.0",
"description": "Fake amqplib",
"type": "module",
"exports": {
"types": "./index.d.ts",
"require": "./main.cjs",
"import": "./index.js"
},
"types": "index.d.ts",
"module": "./index.js",
"main": "./main.cjs",
"scripts": {
"test": "mocha",
"posttest": "npm run lint && npm run dist",
"lint": "eslint . --cache && prettier . -c --cache",
"dist": "rollup -c",
"prepack": "npm run dist",
"cov:html": "c8 -r html -r text mocha",
"test:lcov": "c8 -r lcov mocha && npm run lint"
},
"author": {
"name": "Onify",
"url": "https://github.com/onify"
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "git://github.com/onify/fake-amqplib.git"
},
"license": "MIT",
"dependencies": {
"smqp": "^9.0.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@types/amqplib": "^0.10.2",
"amqplib": "^0.10.4",
"c8": "^10.1.2",
"chai": "^5.1.0",
"eslint": "^9.0.0",
"globals": "^15.0.0",
"mocha": "^11.0.1",
"prettier": "^3.2.5",
"quibble": "^0.9.2",
"rollup": "^4.0.2",
"texample": "^0.0.6"
},
"keywords": [
"fake",
"mock",
"amqp",
"amqplib",
"rabbitmq"
],
"files": [
"index.js",
"index.d.ts",
"main.cjs"
]
}