-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.42 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": "sails-google-cloud-datastore",
"version": "1.0.4",
"description": "Google Cloud Datastore adapter for Sails.js/Waterline.",
"main": "./lib/",
"scripts": {
"test": "npm run lint && npm run datastore-emulator && $(gcloud beta emulators datastore env-init) && npm run adapter-specific-tests && npm run custom-tests && pkill -f emulators/datastore",
"custom-tests": "node test/",
"adapter-specific-tests": "node ./node_modules/mocha/bin/mocha test/**/**.spec.js",
"lint": "node ./node_modules/eslint/bin/eslint . --max-warnings=0",
"datastore-emulator": "gcloud beta emulators datastore --quiet start --no-store-on-disk --consistency=1.0 &"
},
"keywords": [
"google cloud datastore",
"datastore",
"adapter",
"sails",
"sails.js",
"waterline",
"orm",
"database-adapter"
],
"license": "MIT",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git://github.com/DanWilkerson/sails-google-cloud-datastore.git"
},
"dependencies": {
"@google-cloud/datastore": "^1.3.4",
"@sailshq/lodash": "^3.10.2"
},
"devDependencies": {
"benchmark": "2.1.1",
"eslint": "3.5.0",
"mocha": "3.0.2",
"waterline": "^0.13.1",
"waterline-adapter-tests": "^1.0.0-6",
"waterline-utils": "^1.3.12"
},
"waterlineAdapter": {
"interfaces": [
"semantic",
"queryable",
"associations"
],
"features": []
}
}