-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.55 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
44
45
46
47
48
49
50
51
52
53
{
"name": "flood-data",
"version": "2.1.0",
"description": "Serverless (AWS Lambda) project for flood data processing",
"engines": {
"node": "18.x"
},
"scripts": {
"deploy": "sls deploy --force --verbose",
"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": "^25.2.0",
"mock-knex": "^0.4.13",
"proxyquire": "^2.1.3",
"serverless": "^3.38.0",
"serverless-layers": "2.5.1",
"sinon": "^17.0.1",
"standard": "^17.1.0"
},
"dependencies": {
"@hapi/wreck": "^18.0.1",
"async-retry": "^1.3.3",
"aws-sdk": "^2.1585.0",
"axios": "^1.6.8",
"csvtojson": "^2.0.10",
"directly": "^2.0.6",
"joi": "^17.12.2",
"knex": "^3.1.0",
"moment-timezone": "^0.5.45",
"ngr-to-bng": "^0.0.1",
"pg": "^8.11.3",
"proxy-agent": "^6.4.0",
"verror": "^1.10.1",
"xml2js": "^0.6.2"
}
}