This repository has been archived by the owner on Mar 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
97 lines (97 loc) · 3.06 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "sexual-health-service-finder",
"version": "0.25.0",
"description": "Helping to connect people to sexual health services.",
"main": "app.js",
"scripts": {
"brunch-build": "yarn brunch build",
"coverage-upload-coveralls": "cat ./coverage/lcov.info | coveralls",
"git-hook": "yarn lint && yarn test-unit",
"lint": "yarn lint-backend && yarn lint-frontend",
"lint-backend": "eslint --ext .js,.json .",
"lint-frontend": "eslint ./app/public/js",
"lint-watch": "esw --watch .",
"start-watch": "yarn brunch watch & nodemon --inspect=0.0.0.0 app.js | ./node_modules/bunyan/bin/bunyan",
"test": "nyc mocha --exit --recursive test",
"test-ci": "yarn lint && nyc --reporter=lcov --reporter=cobertura mocha --exit --recursive test --reporter mocha-junit-reporter",
"test-unit": "nyc mocha --exit --recursive test/unit",
"test-unit-watch": "nyc mocha --recursive test/unit --reporter min --watch",
"test-integration-watch": "nyc mocha --recursive test/integration --reporter min --watch",
"test-watch": "yarn test --reporter min --watch"
},
"husky": {
"hooks": {
"post-rewrite": "yarn git-hook",
"pre-commit": "yarn git-hook",
"pre-push": "yarn git-hook"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/nhsuk/sexual-health-service-finder.git"
},
"keywords": [
"sexual",
"health",
"services",
"testing",
"online",
"NHS",
"chlamydia"
],
"author": "Mark Harrop",
"license": "MIT",
"bugs": {
"url": "https://github.com/nhsuk/sexual-health-service-finder/issues"
},
"homepage": "https://github.com/nhsuk/sexual-health-service-finder#readme",
"dependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"after-brunch": "^0.0.5",
"babel-brunch": "^7.0.0",
"body-parser": "^1.19.0",
"brunch": "^2.10.16",
"compression": "^1.7.4",
"cookie-parser": "^1.4.3",
"express": "^4.17.0",
"express-prom-bundle": "^5.1.5",
"fingerprint-brunch": "^2.0.6",
"google-libphonenumber": "^3.2.2",
"helmet": "^3.19.0",
"map-replace": "^1.0.2",
"moment": "^2.22.0",
"nhsuk-bunyan-logger": "^1.7.0",
"node-sass": "^4.12.0",
"nunjucks": "^3.2.0",
"prom-client": "^11.3.0",
"querystring": "^0.2.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"require-environment-variables": "^1.2.0",
"sass-brunch": "^2.10.8",
"uglify-es": "^3.1.8",
"verror": "^1.10.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.3.0",
"cheerio": "^1.0.0-rc.3",
"coveralls": "^3.0.0",
"destroy": "^1.0.4",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^18.0.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-nhsuk": "^0.19.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-json": "^2.0.1",
"eslint-plugin-mocha": "^6.0.0",
"eslint-watch": "^6.0.0",
"husky": "^3.0.0",
"mocha": "^6.1.4",
"mocha-junit-reporter": "^1.23.1",
"nock": "^11.0.0",
"nodemon": "^2.0.1",
"nyc": "^14.1.1"
}
}