-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.7 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
59
60
61
62
{
"name": "rod",
"version": "1.0.0",
"main": "index.js",
"description": "Return Of Documents (ROD)",
"engines": {
"node": "^20.0.0"
},
"scripts": {
"start": "node server.js",
"start:dev": "hof-build watch --env",
"test": "NODE_ENV=test yarn run test:lint && yarn run test:unit",
"test:lint": "eslint . --config ./node_modules/eslint-config-hof/default.js",
"build": "hof-build",
"postinstall": "hof-build",
"test:unit": "nyc _mocha \"test/_unit/**/*.spec.js\"",
"test:snyk": "snyk config set api=SNYK_TOKEN && snyk test"
},
"dependencies": {
"accessible-autocomplete": "^2.0.4",
"axios": "^1.6.5",
"bl": "^6.0.10",
"busboy": "^1.6.0",
"crypto-random-string": "^5.0.0",
"bytes": "^3.1.2",
"dotenv": "^16.3.1",
"eslint-config-hof": "^1.3.1",
"hof": "~21.1.1",
"lodash": "^4.17.21",
"notifications-node-client": "^8.0.0",
"node-cron": "^3.0.3"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-hof": "^1.3.1",
"mocha": "^10.2.0",
"proxyquire": "^2.1.3",
"reqres": "^3.0.1",
"sinon": "^15.1.0",
"sinon-chai": "^3.7.0",
"nyc": "^15.1.0",
"chai": "^4.3.8",
"chai-as-promised": "^7.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/UKHomeOffice/return-of-documents.git"
},
"author": "Temitope Ayoku, Mike Maratheftis & SAS HOF Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/UKHomeOffice/return-of-documents/issues"
},
"homepage": "https://github.com/UKHomeOffice/return-of-documents#readme",
"mocha": {
"reporter": "spec",
"require": "test/common.js",
"recursive": "true",
"timeout": "9000",
"exit": "true"
}
}