-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "fws-api",
"version": "2.0.0",
"engines": {
"node": "18.x"
},
"description": "",
"main": "index.js",
"scripts": {
"deploy": "npm run validate-config && sls deploy --verbose --force",
"lint": "standard",
"test": "npm run lint && npm run unit-test",
"unit-test": "lab test -v -c --coverage-path lib -r console -o stdout -r lcov -o coverage/lcov.info -r junit -o test/output-unit.xml",
"validate-config": "node lib/config.js"
},
"author": "DEFRA",
"license": "ISC",
"dependencies": {
"@hapi/joi": "16.1.7",
"aws-sdk": "2.1466.0",
"https-proxy-agent": "5.0.0",
"js2xmlparser": "4.0.1",
"lodash.escape": "^4.0.1",
"lodash.unescape": "^4.0.1",
"moment": "^2.29.4",
"moment-timezone": "^0.5.37",
"pg": "8.6.0",
"sinon": "11.1.1",
"xml2js": "0.6.2",
"xmlbuilder": "15.1.1"
},
"devDependencies": {
"@hapi/code": "8.0.3",
"@hapi/lab": "25.1.3",
"serverless": "^3.35.2",
"serverless-layers": "^2.6.1",
"serverless-offline": "^13.1.1",
"standard": "16.0.3"
}
}