-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.59 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
{
"name": "lmr",
"version": "1.0.0",
"description": "",
"license": "MIT",
"main": "index.js",
"engines": {
"node": ">=18.12.0"
},
"scripts": {
"start": "node server.js",
"start:dev": "hof-build watch --env",
"test": "yarn run test:unit && yarn run test:lint",
"test:lint": "eslint . --config ./node_modules/eslint-config-hof/default.js",
"test:unit": "LOG_LEVEL=error 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:snyk": "snyk config set api=SNYK_TOKEN && snyk test",
"build": "hof-build",
"postinstall": "yarn run build"
},
"author": "",
"dependencies": {
"accessible-autocomplete": "^2.0.4",
"hof": "^21.1.1",
"homeoffice-countries": "^0.1.0",
"jquery": "^3.6.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"notifications-node-client": "^8.0.0",
"typeahead-aria": "^1.0.4",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@cucumber/cucumber": "^7.2.1",
"@cucumber/pretty-formatter": "^1.0.0-alpha.1",
"chai": "^4.3.5",
"eslint": "7.30.0",
"eslint-config-hof": "^1.3.1",
"mocha": "^9.2.0",
"nyc": "^15.1.0",
"playwright": "^1.2.3",
"snyk": "^1.1288.0"
},
"mocha": {
"require": "test/setup.js"
}
}