This repository was archived by the owner on Oct 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2 KB
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
65
66
67
{
"name": "@watchovr/loopback-connector-google-cloud-datastore",
"version": "2.1.1",
"description": "Google Cloud Datastore connector for the LoopBack 4 framework.",
"main": "dist/index.js",
"scripts": {
"test": "npx jest",
"test:local": "DATASTORE_EMULATOR_HOST=localhost:8081 DATASTORE_PROJECT_ID=project-test NODE_ENV=test npx jest",
"test:ci": "docker-compose up",
"test:docker": "docker-compose up --build",
"test:docker-compose": "NODE_ENV=test npx jest",
"build:image": "docker image build -t test-loopback-connector-google-cloud-datastore -f Dockerfile .",
"lint:fix": "npx prettier --write .",
"build": "npx tsc",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,ts}": [
"npm run lint:fix"
]
},
"repository": {
"type": "git",
"url": "git@github.com:Watchovr/loopback-connector-google-cloud-datastore.git"
},
"keywords": [
"connector",
"datasource",
"clementohNZ",
"loopback",
"strongloop",
"google",
"cloud",
"datastore"
],
"author": "Clement Oh <clement.oh094@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/gavelapis/loopback-connector-google-cloud-datastore#readme",
"bugs": "https://github.com/gavelapis/loopback-connector-google-cloud-datastoreissues",
"dependencies": {
"@google-cloud/datastore": "^5.1.0",
"@loopback/repository": "^2.10.0",
"loopback-connector": "^4.11.0"
},
"devDependencies": {
"@types/jest": "^26.0.7",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"ava": "^3.11.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^7.0.0",
"jest": "^26.1.0",
"jest-serial-runner": "^1.1.0",
"lint-staged": "^11.0.0",
"loopback-datasource-juggler": "^4.21.2",
"prettier": "^2.0.5",
"ts-jest": "^26.1.3",
"typescript": "^3.9.7"
}
}