-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.54 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.54 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
{
"name": "flood-data",
"version": "2.4.0",
"description": "AWS Lambda project for flood data processing",
"engines": {
"node": "22.x"
},
"scripts": {
"integration-test": "lab test/integration -v -r console -o stdout -r junit -o test/output-integration.xml -m 60000",
"lint": "standard",
"unit-test": "lab test/unit -c -r console -o stdout -r lcov -o coverage/lcov.info -r junit -o test/output-unit.xml",
"post-deployment-test": "npm run integration-test",
"pre-deployment-test": "npm run lint && npm run unit-test",
"test": "npm run lint && npm run unit-test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DEFRA/flood-data.git"
},
"author": "DEFRA",
"license": "OGL",
"bugs": {
"url": "https://github.com/DEFRA/flood-data/issues"
},
"homepage": "https://github.com/DEFRA/flood-data#readme",
"devDependencies": {
"@hapi/code": "9.0.3",
"@hapi/lab": "26.0.0",
"aws-sdk-client-mock": "4.1.0",
"mock-knex": "0.4.13",
"proxyquire": "2.1.3",
"sinon": "21.0.1",
"standard": "17.1.2"
},
"dependencies": {
"@aws-sdk/client-lambda": "3.988.0",
"@aws-sdk/client-s3": "3.988.0",
"@hapi/wreck": "18.1.0",
"@smithy/node-http-handler": "4.4.10",
"async-retry": "1.3.3",
"axios": "1.13.5",
"csvtojson": "2.0.14",
"directly": "2.0.6",
"joi": "18.0.2",
"knex": "3.1.0",
"moment-timezone": "0.6.0",
"ngr-to-bng": "0.0.1",
"pg": "8.18.0",
"proxy-agent": "6.5.0",
"verror": "1.10.1",
"xml2js": "0.6.2"
}
}