-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.5 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
{
"name": "GRO",
"version": "1.0.1",
"main": "server.js",
"description": "The General Register Office DSP form",
"license": "GPL-2.0",
"engines": {
"node": ">=20.16.0 <21.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/UKHomeOffice/gro/"
},
"readme": "./README.md",
"scripts": {
"start": "node server.js",
"start:dev": "NODE_ENV=development hof-build watch --env",
"test": "npm run test:lint",
"test:integration": "NODE_ENV=development _mocha \"test/_integration/**/*.spec.js\" -r dotenv/config --exit",
"test:lint": "eslint . --config ./node_modules/eslint-config-hof/default.js",
"build": "hof-build",
"postinstall": "yarn run build"
},
"author": "HomeOffice",
"dependencies": {
"browserify": "^17.0.0",
"deprecate": "^1.0.0",
"hof": "~21.1.0",
"homeoffice-countries": "^0.1.0",
"jquery": "^3.6.0",
"lodash": "^4.17.21",
"moment": "^2.29.3",
"typeahead-aria": "^1.0.1"
},
"devDependencies": {
"chai": "^4.3.6",
"debug": "^4.3.2",
"eslint": "^7.30.0",
"eslint-config-hof": "^1.0.4",
"express": "^4.14.0",
"jsdom": "^19.0.0",
"mocha": "^9.0.2",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^9.2.0",
"sinon-chai": "^3.7.0",
"supertest": "^6.2.2",
"supertest-session": "^4.1.0"
},
"resolutions": {
"underscore": "^1.12.1"
},
"mocha": {
"reporter": "spec",
"require": "test/setup.js",
"recursive": "true",
"timeout": "6000"
}
}