-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.02 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
{
"name": "file-vault",
"version": "1.1.0",
"repository": {
"type": "git",
"url": "https://github.com/UKHomeOffice/file-vault"
},
"engines": {
"node": ">=14.15.0"
},
"description": "Allows POST and GET to a configured s3 bucket.",
"main": "index.js",
"scripts": {
"test": "yarn run test:lint && yarn run test:unit",
"test:lint": "eslint .",
"test:unit": "NODE_ENV=test mocha test/",
"start": "node index",
"start:dev": "nodemon -r dotenv/config index"
},
"author": "UKHomeOffice",
"license": "MIT",
"dependencies": {
"aws-sdk": "2.167.0",
"config": "^1.24.0",
"debug": "^4.1.1",
"express": "^4.17.1",
"hof": "^20.2.2",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"multer": "^1.2.1",
"on-finished": "^2.3.0",
"request": "^2.79.0"
},
"devDependencies": {
"dotenv": "^16.0.3",
"eslint": "^3.13.1",
"eslint-config-homeoffice": "^2.0.0",
"mocha": "^3.2.0",
"nock": "^9.1.0",
"nodemon": "^2.0.21",
"supertest": "^2.0.1"
}
}