-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.66 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
54
55
56
57
58
{
"name": "asl-resolver",
"version": "1.0.8",
"description": "Workflow API for processing change requests",
"main": "index.js",
"scripts": {
"test": "npm run test:lint && npm run test:unit",
"pretest:unit": "npm run migrate",
"test:unit": "nyc mocha",
"test:lint": "eslint .",
"test:audit": "audit-ci --high --skip-dev --config .auditrc.json",
"dev": "nodemon -r dotenv/config index.js",
"migrate": "knex migrate:latest --knexfile ./node_modules/@asl/schema/knexfile.js --env test",
"task": "node ./tasks/run-task"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UKHomeOffice/asl-resolver.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/UKHomeOffice/asl-resolver/issues"
},
"homepage": "https://github.com/UKHomeOffice/asl-resolver#readme",
"dependencies": {
"@asl/schema": "^10.18.7",
"@asl/service": "^10.5.3",
"@ukhomeoffice/asl-constants": "^2.1.8",
"aws-sdk": "2.1169.0",
"hot-shots": "^6.8.2",
"jsondiffpatch": "^0.4.1",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"minimist": "^1.2.6",
"moment": "^2.29.3",
"r2": "^2.0.1",
"sha.js": "^2.4.11",
"sqs-consumer": "^5.6.0",
"url-search-params": "^1.0.2",
"uuid": "^7.0.2",
"uuid-validate": "^0.0.3",
"winston": "^3.8.2"
},
"devDependencies": {
"audit-ci": "^6.5.0",
"dotenv": "^6.0.0",
"eslint": "^8.26.0",
"@ukhomeoffice/eslint-config-asl": "^3.0.0",
"eslint-plugin-undocumented-env": "^1.0.0",
"knex": "^0.21.21",
"mocha": "^10.1.0",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"sinon": "^6.1.5"
}
}