-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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
{
"name": "asl-notifications",
"version": "1.0.2",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon -r dotenv/config index.js",
"test": "npm run test:lint && npm run test:unit",
"test:lint": "eslint .",
"pretest:unit": "NODE_ENV=test npm run migrate",
"test:unit": "NODE_ENV=test mocha ./test --recursive --exit --timeout 10000",
"test:audit": "audit-ci --high --skip-dev --config .auditrc.json",
"migrate": "DATABASE_NAME=asl-test knex migrate:latest --knexfile ./node_modules/@asl/schema/knexfile.js",
"job": "node ./jobs/run-job"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UKHomeOffice/asl-notifications.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/UKHomeOffice/asl-notifications/issues"
},
"homepage": "https://github.com/UKHomeOffice/asl-notifications#readme",
"devDependencies": {
"audit-ci": "^6.5.0",
"dotenv": "^6.2.0",
"eslint": "^5.16.0",
"@ukhomeoffice/eslint-config-asl": "^3.0.0",
"eslint-plugin-undocumented-env": "^1.0.0",
"knex": "^2.5.1",
"mocha": "^10.1.0",
"mockdate": "^3.0.5",
"nodemon": "^2.0.4",
"pg": "^8.7.3"
},
"dependencies": {
"@asl/schema": "^10.18.1",
"@asl/service": "10.3.0",
"hot-shots": "^8.3.1",
"lodash": "^4.17.21",
"minimist": "^1.2.6",
"moment": "^2.29.2",
"mustache": "^3.1.0",
"r2": "^2.0.1",
"sinon": "^10.0.1",
"uuid": "^8.3.2",
"winston": "^3.2.1"
}
}