-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.49 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
{
"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": ">=18.12.1 <21.0.0"
},
"scripts": {
"start": "node server.js",
"start:dev": "NODE_ENV=development hof-build watch",
"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",
"test:lint": "eslint . --config ./node_modules/eslint-config-hof/default.js",
"test:snyk": "snyk config set api=SNYK_TOKEN && snyk test",
"build": "hof-build",
"postinstall": "npm run build"
},
"author": "HomeOffice",
"dependencies": {
"hof": "~21.1.0",
"jquery": "^3.6.0",
"lodash": "^4.17.21",
"moment": "^2.29.4"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.29.0",
"eslint-config-hof": "^1.2.1",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^11.1.2",
"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"
}
}