-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 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
{
"name": "eta",
"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": "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: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",
"test:snyk": "snyk config set api=SNYK_TOKEN && snyk test",
"build": "hof-build",
"postinstall": "yarn run build"
},
"dependencies": {
"hof": "~21.1.0",
"snyk": "^1.1235.0",
"typeahead-aria": "^1.0.4"
},
"devDependencies": {
"@cucumber/cucumber": "^10.0.0",
"@cucumber/pretty-formatter": "^1.0.0",
"chai": "^4.3.8",
"chai-as-promised": "^7.1.1",
"eslint": "^8.48.0",
"eslint-config-hof": "^1.3.1",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"playwright": "^1.39.0"
},
"mocha": {
"require": "test/setup.js"
}
}