-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.14 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.14 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
{
"name": "DeadBolt",
"version": "1.0.0",
"description": "Front end for database user management",
"main": "app.js",
"scripts": {
"postinstall": "bower install",
"test": "mocha",
"coverage": "mocha --require blanket -R html-cov > coverage.html",
"start": "node app.js",
"stop": "sudo killall node"
},
"keywords": [
"Angular",
"Node",
"Active Directory",
"RDS",
"Database"
],
"author": "ayost",
"license": "NONE",
"config": {
"blanket": {
"pattern": [
"routes",
"tools"
],
"data-cover-never": [
"node_modules",
"client",
"test",
"middleware"
]
}
},
"dependencies": {
"async": "^1.2.1",
"aws-sdk": "^2.1.34",
"body-parser": "^1.12.4",
"cookie-parser": "^1.4.1",
"ejs": "^2.3.1",
"express": "^4.12.4",
"mssql": "^2.1.6",
"mysql": "^2.7.0",
"node-uuid": "^1.4.3",
"nodemailer": "^1.3.4",
"nodemailer-ses-transport": "^1.3.0",
"request": "^2.58.0"
},
"devDependencies": {
"rewire": "^2.5.1",
"supertest": "^1.0.1",
"mocha": "^2.2.5",
"blanket": "^1.1.7"
}
}