datastore-api 1.1.0 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -0
- package/README.md +3 -2
- package/build/main/lib/dstore-api.d.ts +63 -47
- package/build/main/lib/dstore-api.js +71 -56
- package/build/main/lib/dstore-api.spec.js +65 -99
- package/build/module/lib/dstore-api.d.ts +63 -47
- package/build/module/lib/dstore-api.js +67 -55
- package/build/module/lib/dstore-api.spec.js +64 -99
- package/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "datastore-api",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "Simplified, more consitent API for Google Cloud Datastore",
|
|
5
5
|
"main": "build/main/index.js",
|
|
6
6
|
"typings": "build/main/index.d.ts",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"cov:html": "nyc report --reporter=html",
|
|
33
33
|
"cov:lcov": "nyc report --reporter=lcov",
|
|
34
34
|
"cov:send": "run-s cov:lcov && codecov",
|
|
35
|
-
"cov:check": "nyc report && nyc check-coverage --lines
|
|
35
|
+
"cov:check": "nyc report && nyc check-coverage --lines 50 --functions 20 --branches 20",
|
|
36
36
|
"doc": "run-s doc:html && open-cli build/docs/index.html",
|
|
37
37
|
"doc:html": "typedoc src/ --exclude **/*.spec.ts --out build/docs",
|
|
38
38
|
"doc:json": "typedoc src/ --exclude **/*.spec.ts --json build/docs/typedoc.json",
|
|
@@ -45,7 +45,8 @@
|
|
|
45
45
|
"node": ">=10"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"assertate": "^2.4.0"
|
|
48
|
+
"assertate": "^2.4.0",
|
|
49
|
+
"google-datastore-emulator": "^5.1.0"
|
|
49
50
|
},
|
|
50
51
|
"devDependencies": {
|
|
51
52
|
"@ava/typescript": "^1.1.1",
|