-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
49 lines (49 loc) · 1.22 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
{
"name": "google-pubsub-emulator",
"version": "7.1.0",
"description": "Google pubsub emulator to nodejs / javascript",
"main": "index.js",
"scripts": {
"test": "mocha --ui bdd test/**/*.spec.js --timeout 60000",
"test:appveyor": "mocha --reporter mocha-appveyor-reporter --reporter-options appveyorBatchSize=1 --ui bdd test/**/*.spec.js --timeout 20000",
"coverage": "nyc npm test",
"release": "standard-version"
},
"keywords": [
"google",
"pubsub",
"emulator",
"wrapper",
"nodejs",
"javascript"
],
"repository": {
"type": "git",
"url": "https://github.com/ert78gb/google-pubsub-emulator.git"
},
"author": "Robert Kiss <[email protected]>",
"license": "MIT",
"files": [
"index.js",
"src/"
],
"dependencies": {
"fs-extra": "^11.1.0",
"get-port": "^7.0.0",
"node-cleanup": "^2.1.2",
"tree-kill": "^1.2.2"
},
"devDependencies": {
"@types/mocha": "^10.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"nyc": "^15.0.0",
"mocha": "^10.0.0",
"mocha-appveyor-reporter": "^0.4.2",
"sinon": "^16.0.0",
"standard-version": "^9.0.0"
},
"peerDependencies": {
"@google-cloud/pubsub": ">=2.16.0 <5.0.0"
}
}