-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 919 Bytes
/
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
{
"name": "pgcapstone",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"start": "node app.js",
"e2e": "repo-tools test deploy",
"test": "repo-tools test app",
"cover": "nyc --cache npm test; nyc report --reporter=html"
},
"author": "PGHS Students",
"contributors": [
{
"name": "Mitali Chowdhury",
"email": "mitalichowdhury00@gmail.com"
}
],
"cloud-repo-tools": {
"requiresKeyFile": true,
"requiresProjectId": true,
"test": {
"app": {
"args": [
"app.js"
]
}
}
},
"semistandard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"it"
]
},
"dependencies": {
"@google-cloud/datastore": "^1.4.2",
"express": "4.16.2",
"npm": "^6.12.0"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "^3.3.0",
"ava": "^2.4.0",
"supertest": "3.0.0"
},
"engines": {
"node": "10.x.x"
}
}