-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 785 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 785 Bytes
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
{
"name": "software-checkout",
"version": "1.0.0",
"description": "Connect LibCal checkouts with Active Directory groups",
"main": "app.js",
"scripts": {
"test": "jest --watch",
"start": "node app",
"server": "node app --listen --name=software-checkout >> logs/app.log 2>&1 &",
"dev": "nodemon app"
},
"author": "Ken Irwin",
"license": "MIT",
"dependencies": {
"@adobe/jwt-auth": "^0.3.1",
"async": "^3.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"nodemon": "^2.0.2",
"querystring": "^0.2.0",
"simple-oauth2": "^3.3.0"
},
"devDependencies": {
"babel-jest": "^25.2.4",
"bufferutil": "^4.0.1",
"canvas": "^2.6.1",
"jest": "^25.2.4",
"utf-8-validate": "^5.0.2"
}
}