-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 2.31 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "nodejs-getting-started",
"version": "1.0.0",
"description": "A library management app.",
"repository": "https://github.com/DanielPri/FreeForFree",
"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": "SOEN343 - Team #1",
"contributors": [
{
"name": "Mikael Samvelian",
"email": "mikael.samvelian@gmail.com"
},
{
"name": "Hassan Karimian",
"email": "karimian_hassan@yahoo.ca"
},
{
"name": "Charles Chan",
"email": "chanc09@gmail.com"
},
{
"name": "Sebastien Ong Tone",
"email": "s.ongtone@hotmail.com"
},
{
"name": "Steffan Venacious",
"email": "steffan_v@hotmail.com"
},
{
"name": "Calvin-Alain Bernales",
"email": "b_calvin@hotmail.com"
},
{
"name": "Conor Geoghegan",
"email": "cognoman@hotmail.com"
},
{
"name": "Daniel Privorotsky",
"email": "privorotskyd@gmail.com"
},
{
"name": "Oumar Ba",
"email": "oumarba221296@hotmail.fr"
},
{
"name": "Tyler Delaportas",
"email": "tdelaportas@hotmail.com"
}
],
"cloud-repo-tools": {
"requiresKeyFile": true,
"requiresProjectId": true,
"test": {
"app": {
"args": [
"app.js"
],
"msg": "FreeForFree - Library Management App"
}
}
},
"license": "Apache-2.0",
"semistandard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"it"
]
},
"dependencies": {
"@google-cloud/datastore": "1.3.4",
"@google-cloud/storage": "1.7.0",
"body-parser": "1.18.3",
"connect-memjs": "0.2.1",
"express": "^4.16.4",
"express-session": "1.15.6",
"jsdom": "^12.2.0",
"lodash": "4.17.5",
"multer": "^1.4.1",
"mysql": "2.15.0",
"nconf": "0.10.0",
"passport": "0.4.0",
"passport-google-oauth20": "1.0.0",
"prompt": "1.0.0",
"pug": "2.0.0-rc.4",
"uglify-js": "3.3.12"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "^2.3.3",
"ava": "0.25.0",
"proxyquire": "1.8.0",
"sinon": "4.3.0"
},
"engines": {
"node": "8.x.x"
}
}