-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.68 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.68 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": "lev-api",
"version": "0.22.0",
"description": "Life Event Verification API",
"main": "src/app.js",
"scripts": {
"start": "node .",
"start:dev": "NODE_ENV=development POSTGRES_DB=levdb POSTGRES_USER=lev POSTGRES_PASSWORD=lev POSTGRES_SSL=false nodemon -w src/ -w config.js .",
"start:dev-mock": "NODE_ENV=development MOCK=true nodemon -w src/ -w config.js -w mock/ .",
"test": "npm-run-all test:cover test:check-coverage",
"test:unit": "mocha --reporter spec ./test/unit",
"test:cover": "nyc --all npm run test:unit && nyc report --reporter=html --reporter=lcov",
"test:check-coverage": "nyc check-coverage --statements 50 --branches 60 --functions 60 --lines 50"
},
"repository": {
"type": "git",
"url": "https://github.com/UKHomeOffice/lev-api"
},
"author": "Daniel A.C. Martin <npm@daniel-martin.co.uk> (http://daniel-martin.co.uk/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/UKHomeOffice/lev-api/issues"
},
"homepage": "https://github.com/UKHomeOffice/lev-api#readme",
"dependencies": {
"@aws-sdk/credential-providers": "^3.360.0",
"@aws-sdk/rds-signer": "^3.362.0",
"bunyan": "^1.8.15",
"functional-augments": "^1.0.0",
"lev-restify": "4.2.0",
"moment": "^2.29.4",
"pg-monitor": "^1.4.1",
"pg-promise": "^10.11.1"
},
"devDependencies": {
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"chai-json-pattern": "^1.1.0",
"mocha": "^10.1.0",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"proxyquire": "^2.0.1",
"sinon": "^15.2.0",
"sinon-chai": "^3.7.0"
},
"nyc": {
"include": [
"src/",
"config.js"
]
}
}