-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.14 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
{
"license": "MIT",
"scripts": {
"start": "node app.js",
"dev": "hof-build watch",
"dev:ci": "NODE_ENV=ci DISABLE_CSP=true npm run dev",
"test": "NODE_ENV=test npm run test:unit && npm run lint",
"test:unit": "_mocha",
"lint": "npm run lint:app && npm run lint:acceptance",
"lint:app": "eslint .",
"test:acceptance": "so-acceptance --steps",
"test:acceptance:local": "funkie --driver chromedriver npm run test:acceptance",
"lint:acceptance": "eslint --no-ignore -c ./node_modules/so-acceptance/.eslintrc ./apps/*/acceptance/**/*.js",
"build": "hof-build",
"prepublish": "npm run build",
"postinstall": "npm run build"
},
"dependencies": {
"debug": "^3.1.0",
"hof": "^13.2.2",
"hof-behaviour-address-lookup": "^2.2.1",
"hof-behaviour-emailer": "^2.2.0",
"hof-behaviour-summary-page": "^3.0.0",
"hof-build": "^1.6.0",
"hof-component-date": "^1.4.0",
"hof-form-controller": "^5.1.0",
"hof-frontend-toolkit": "^2.1.0",
"hof-model": "^3.1.2",
"hof-theme-govuk": "^4.1.0",
"hof-util-countries": "^1.0.0",
"is-pdf": "^1.0.0",
"jquery": "^3.1.1",
"lodash": "^4.17.4",
"mixwith": "^0.1.1",
"moment": "^2.19.1",
"typeahead-aria": "^1.0.4",
"uuid": "^3.1.0"
},
"devDependencies": {
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"eslint": "^3.14.0",
"eslint-config-homeoffice": "^2.1.0",
"express": "^4.15.2",
"funkie": "0.0.6",
"funkie-chromedriver": "0.0.1",
"hof-util-reqres": "^1.1.0",
"mocha": "^3.4.2",
"pre-commit": "^1.2.2",
"proxyquire": "^1.8.0",
"reqres": "^1.3.0",
"sinon": "^2.4.1",
"sinon-chai": "^2.12.0",
"so-acceptance": "^6.0.0"
},
"pre-commit": [
"test"
],
"name": "right-to-rent-check",
"version": "1.0.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/UKHomeOffice/right-to-rent-check.git"
},
"bugs": {
"url": "https://github.com/UKHomeOffice/right-to-rent-check/issues"
},
"homepage": "https://github.com/UKHomeOffice/right-to-rent-check#readme",
"description": "Right to Rent Check form service"
}