-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
81 lines (81 loc) · 2.45 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "firearms",
"version": "0.1.0",
"main": "server.js",
"description": "Firearms application service",
"author": "HomeOffice",
"engines": {
"node": ">=18.12.1 <21.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UKHomeOffice/firearms.git"
},
"license": "./LICENSE",
"scripts": {
"start": "node server.js",
"start:dev": "NODE_ENV=development hof-build watch",
"dev": "NODE_ENV=development hof-build watch --env",
"test": "NODE_ENV=test yarn run test:lint && yarn run test:unit",
"test:unit": "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:lint": "eslint . --config ./node_modules/eslint-config-hof/default.js",
"test:snyk": "snyk config set api=SNYK_TOKEN && snyk test",
"build": "hof-build",
"postinstall": "hof-build"
},
"dependencies": {
"busboy-body-parser": "^0.3.0",
"debug": "^2.6.8",
"express": "^4.19.2",
"hof": "~21.1.0",
"hot-shots": "^5.9.0",
"i18n-lookup": "^1.0.0",
"is-pdf": "^1.0.0",
"jquery": "^3.3.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"mustache": "^2.3.0",
"notifications-node-client": "^8.0.0",
"typeahead-aria": "^1.0.4",
"uuid": "^3.1.0"
},
"devDependencies": {
"@cucumber/cucumber": "^7.3.0",
"@cucumber/pretty-formatter": "^1.0.0-alpha.1",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^7.32.0",
"eslint-config-hof": "^1.2.1",
"funkie": "^0.0.6",
"mocha": "^9.0.3",
"mock-fs": "^5.0.0",
"nyc": "^15.1.0",
"playwright": "~1.39.0",
"proxyquire": "^2.1.3",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0",
"snyk": "^1.675.0"
},
"resolutions": {
"underscore": "^1.12.1",
"qs": "6.11.0",
"minimatch": "3.1.2"
},
"mocha": {
"reporter": "spec",
"require": "test/setup.js",
"recursive": "true",
"timeout": "6000"
},
"bugs": {
"url": "https://github.com/UKHomeOffice/firearms/issues"
},
"homepage": "https://github.com/UKHomeOffice/firearms#readme",
"directories": {
"test": "test"
},
"keywords": []
}