-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.58 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
{
"name": "asl-data-exports",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon -r dotenv/config index.js",
"test:lint": "eslint .",
"pretest:unit": "npm run migrate",
"test:unit": "mocha ./test/specs --recursive",
"test:audit": "audit-ci --high --skip-dev --config .auditrc.json",
"migrate": "DATABASE_NAME=asl-test NODE_ENV=test knex migrate:latest --knexfile ./node_modules/@asl/schema/knexfile.js",
"test": "npm run test:lint && npm run test:unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UKHomeOffice/asl-data-exports.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/UKHomeOffice/asl-data-exports/issues"
},
"publishConfig": {
"registry": "https://artifactory.digital.homeoffice.gov.uk/artifactory/api/npm/npm-virtual/"
},
"homepage": "https://github.com/UKHomeOffice/asl-data-exports#readme",
"devDependencies": {
"audit-ci": "^6.5.0",
"bl": "^5.0.0",
"csv-parse": "^4.16.3",
"dotenv": "^8.2.0",
"eslint": "^7.23.0",
"eslint-config-lennym": "^2.3.1",
"jszip": "^3.7.1",
"mocha": "^9.2.0",
"nodemon": "^2.0.7",
"uuid": "^8.3.2"
},
"dependencies": {
"@asl/schema": "^10.18.5",
"@asl/service": "^10.0.2",
"archiver": "^5.3.0",
"aws-sdk": "^2.874.0",
"csv-stringify": "^5.6.2",
"filenamify": "^4.2.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"ndjson": "^2.0.0",
"node-fetch": "^2.6.7",
"through2": "^4.0.2",
"winston": "^3.4.0"
}
}