-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.32 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
{
"name": "explosive-precursors-and-poisons",
"version": "1.0.0",
"description": "Explosive Precursors and Poisons form",
"main": "index.js",
"engines": {
"node": ">=20.16.0 <21.0.0"
},
"scripts": {
"start": "node server.js",
"start:dev": "hof-build watch --env",
"build": "hof-build",
"postinstall": "hof-build",
"test": "NODE_ENV=test yarn run test:lint && yarn run test:unit",
"test:unit": "nyc _mocha \\\"tests/unit/**/*.spec.js\\\"",
"test:lint": "eslint . --config ./node_modules/eslint-config-hof/default.js"
},
"repository": {
"type": "git",
"url": "[email protected]:UKHomeOffice/explosives-precursors-poisons.git"
},
"author": "HOF",
"license": "MIT",
"bugs": {
"url": "https://github.com/UKHomeOffice/explosives-precursors-poisons"
},
"homepage": "https://github.com/UKHomeOffice/explosives-precursors-poisons",
"mocha": {
"reporter": "spec",
"require": "test/setup.js",
"recursive": "true",
"timeout": "6000"
},
"dependencies": {
"accessible-autocomplete": "^2.0.4",
"bl": "^6.0.12",
"busboy": "^1.6.0",
"hof": "^21.1.1",
"jquery": "^3.6.3",
"jsdom": "^25.0.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-hof": "^1.3.4",
"mocha": "^10.6.0",
"nyc": "^15.1.0"
}
}