-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.77 KB
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
{
"name": "are_calculator",
"version": "1.0.0",
"main": "index.js",
"description": "This calculates the date when an appellants appeal rights are exhausted",
"license": "GPLv2",
"repository": {
"type": "git",
"url": "https://github.com/UKHomeOffice/AppealRightsExhausted/"
},
"engines": {
"node": ">=24.15.0 <25.0.0"
},
"scripts": {
"start": "node server.js",
"start:dev": "NODE_ENV=development hof-build watch --env",
"dev": "NODE_ENV=development hof-build watch --env",
"debug": "node --inspect .",
"test": "npm run test:lint && npm run test:unit",
"test:unit": "nyc _mocha \"test/_unit/**/*.spec.js\"",
"test:acceptance": "cd acceptance_tests/; bundle install && cucumber",
"bddgen": "bddgen",
"test:e2e": "bddgen && playwright test",
"test:e2e:headed": "bddgen && playwright test --headed",
"test:e2e:debug": "bddgen && playwright test --debug",
"test:e2e:report": "playwright show-report",
"test:lint": "eslint . --config ./node_modules/eslint-config-hof/default.js",
"build": "hof-build",
"postinstall": "npm run build"
},
"author": "HomeOffice",
"dependencies": {
"@cucumber/cucumber": "^13.0.0",
"hof": "~24.4.0",
"jquery": "^4.0.0",
"lodash": "^4.18.1",
"moment": "^2.30.1"
},
"devDependencies": {
"@playwright/test": "1.60.0",
"@types/node": "^25.9.2",
"chai": "^6.2.2",
"dotenv": "^17.4.2",
"eslint": "^8.57.0",
"eslint-config-hof": "^1.3.4",
"mocha": "^11.7.6",
"nyc": "^17.1.0",
"playwright": "1.60.0",
"playwright-bdd": "^9.0.0",
"proxyquire": "^2.1.3",
"sinon": "^22.0.0",
"sinon-chai": "^4.0.1"
},
"mocha": {
"reporter": "spec",
"require": "test/setup.js",
"recursive": "true",
"timeout": "6000"
}
}