forked from DEFRA/cap-xml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 936 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 936 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
32
33
34
35
36
{
"name": "cap-xml",
"version": "3.0.0",
"description": "CAP XML service",
"engines": {
"node": ">=20"
},
"main": "handler.js",
"scripts": {
"deploy": "npm run validate-config && sls deploy --verbose --force",
"lint": "standard",
"unit-test": "lab test -v -c -r console -o stdout -r lcov -o coverage/lcov.info -m 5000",
"test": "npm run lint && npm run unit-test",
"validate-config": "node ./config/index.js"
},
"author": "The Environment Agency",
"license": "OGL",
"dependencies": {
"@aws-sdk/client-sns": "^3.873.0",
"feed": "5.1.0",
"joi": "^18.0.1",
"moment": "^2.30.1",
"pg": "8.16.3",
"sql-ts": "7.1.0",
"xml2js": "0.6.2",
"xmllint-wasm": "^5.0.0"
},
"devDependencies": {
"@hapi/code": "^9.0.3",
"@hapi/lab": "^26.0.0",
"aws-sdk-client-mock": "^4.1.0",
"proxyquire": "^2.1.3",
"sinon": "^21.0.0",
"standard": "17.1.2"
}
}