-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 2.36 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
63
64
65
66
67
68
69
{
"name": "ukvi-complaints",
"version": "1.0.0",
"main": "index.js",
"keywords": [],
"author": "",
"description": "",
"engines": {
"node": ">=18.12.1 <21.0.0"
},
"license": "MIT",
"scripts": {
"start": "node server.js",
"start:dev": "hof-build watch --env",
"test": "yarn run test:lint && yarn run test:unit",
"test:lint": "eslint . --config ./node_modules/eslint-config-hof/default.js",
"test:unit": "nyc _mocha \"test/_unit/**/*.spec.js\"",
"test:acceptance": "TAGS=\"${TAGS:=@feature}\" npm run test:cucumber",
"test:acceptance_browser": "ACCEPTANCE_WITH_BROWSER=true TAGS=\"${TAGS:=@feature}\" yarn run test:cucumber",
"test:cucumber": "cucumber-js -f @cucumber/pretty-formatter \"test/_features/**/*.feature\" --require test/_features/test.setup.js --require \"test/_features/step_definitions/**/*.js\" --tags $TAGS",
"test:cucumber-name": "cucumber-js -f @cucumber/pretty-formatter \"test/_features/**/*.feature\" --require test/_features/test.setup.js --require \"test/_features/step_definitions/**/*.js\" --name $NAME",
"sqs-setup": "docker build -q -t sqs-mock test/_integration/sqs-mock && docker run --name sqs-mock -p 9324:9324 -d sqs-mock",
"sqs-cleanup": "docker stop sqs-mock && docker container rm sqs-mock",
"test:snyk": "snyk config set api=SNYK_TOKEN && snyk test",
"build": "hof-build",
"postinstall": "yarn run build"
},
"dependencies": {
"aws4": "^1.11.0",
"hof": "~21.1.0",
"hot-shots": "^8.5.0",
"jquery": "^3.6.0",
"jsonschema": "^1.4.0",
"moment": "^2.29.4",
"nodemailer": "^6.7.5",
"path-parse": "^1.0.7",
"sqs-producer": "^2.1.0",
"ssh2": "^1.16.0",
"typeahead-aria": "^1.0.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@cucumber/cucumber": "^7.3.0",
"@cucumber/pretty-formatter": "^1.0.0-alpha.1",
"aws-sdk": "^2.1155.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^7.30.0",
"eslint-config-hof": "^1.2.1",
"funkie": "^0.0.6",
"mocha": "^9.0.3",
"mock-fs": "^5.1.2",
"nyc": "^15.1.0",
"playwright": "^1.12.3",
"proxyquire": "^2.1.3",
"sinon": "^11.1.1",
"sinon-chai": "^3.7.0",
"snyk": "^1.675.0"
},
"resolutions": {
"underscore": "^1.12.1"
},
"mocha": {
"reporter": "spec",
"require": "test/setup.js",
"recursive": "true",
"timeout": "6000"
}
}