forked from googleapis/nodejs-datastore-session
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.32 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
50
51
52
53
54
55
56
{
"name": "@google-cloud/connect-datastore",
"description": "Google Cloud Datastore session store for Express/Connect",
"version": "1.0.0",
"license": "Apache-2.0",
"author": "Google Inc.",
"main": "./src/index.js",
"engines": {
"node": ">= 0.12.x"
},
"files": [
"AUTHORS",
"CONTRIBUTORS",
"src/",
"yarn.lock"
],
"repository": {
"type": "git",
"url": "https://github.com/GoogleCloudPlatform/cloud-datastore-session-node.git"
},
"peerDependencies": {
"@google-cloud/datastore": "^1.4.0"
},
"bugs": {
"url": "https://github.com/GoogleCloudPlatform/cloud-datastore-session-node/issues"
},
"semistandard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"it"
],
"ignore": [
"**/node_modules/**",
"coverage",
"doc"
]
},
"scripts": {
"lint": "semistandard \"**/*.js\"",
"mocha": "mocha test/ --recursive -t 10000 -S -R spec",
"cover": "nyc --cache mocha test/ --recursive -t 10000 -S -R spec && nyc report --reporter=html",
"test": "npm run lint && npm run cover"
},
"devDependencies": {
"@google-cloud/datastore": "^1.4.0",
"express": "4.14.0",
"express-session": "1.14.2",
"mocha": "3.2.0",
"nyc": "10.0.0",
"semistandard": "9.2.1"
}
}