-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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
{
"name": "google-datastore-emulator",
"version": "7.1.0",
"description": "NodeJs wrapper to google datastore emulator. It could start and stop emulator as node module",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha --ui bdd --timeout 120000 --bail test/**/*.spec.js",
"coverage": "nyc npm run test",
"release": "standard-version"
},
"keywords": [
"google",
"datastore",
"emulator",
"nodejs",
"wrapper"
],
"repository": {
"type": "git",
"url": "https://github.com/ert78gb/google-datastore-emulator.git"
},
"author": "Robert Kiss <ert78gb@gmail.com>",
"license": "MIT",
"files": [
"index.js",
"index.d.ts",
"src/"
],
"dependencies": {
"dockerode": "^3.2.1",
"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.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^10.0.0",
"nyc": "^15.0.0",
"standard-version": "^9.0.0"
},
"peerDependencies": {
"@google-cloud/datastore": ">=1.0.0 <9.0.0"
}
}