-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "govuk-republish",
"description": "gov uk republisher",
"license": "OGL-UK-3.0",
"version": "1.0.0",
"homepage": "https://github.com/Matthew-Collins-Defra/govuk-republish",
"author": "Defra DDTS",
"contributors": [
"Matthew Collins <[email protected]>",
"David Bingham <[email protected]>"
],
"main": "index.js",
"scripts": {
"build": "npm run build:css",
"build:css": "node-sass --output-style=expanded --output=server/public/build/stylesheets client/sass",
"test": "npm-run-all --parallel test:lint test:unit",
"test:lint": "standard",
"test:pa11y": "pa11y-ci",
"test:snyk": "snyk test",
"test:unit": "jest",
"watch:build": "nodemon --exec npm run build --ext scss --legacy-watch",
"watch:unit": "jest --coverage=false --onlyChanged --watch"
},
"dependencies": {
"boom": "7.3.0",
"govuk-frontend": "^3.5.0",
"hapi": "18.1.0",
"hapi-auth-basic": "^5.0.0",
"inert": "5.1.3",
"joi": "14.3.1",
"nunjucks": "3.2.0",
"request": "^2.88.2",
"request-promise-native": "^1.0.8",
"vision": "5.4.4"
},
"devDependencies": {
"blipp": "^4.0.1",
"code": "5.2.4",
"codeclimate-test-reporter": "0.5.1",
"good": "8.1.2",
"good-console": "8.0.0",
"good-file": "6.0.1",
"good-squeeze": "5.1.0",
"jest": "^25.0.0",
"jest-junit": "^10.0.0",
"node-sass": "^4.13.1",
"nodemon": "^2.0.0",
"npm-run-all": "^4.1.5",
"snyk": "^1.297.1",
"standard": "^14.0.1"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.js",
"!**/*.test.js"
],
"coverageDirectory": "test-output",
"coverageReporters": [
"text-summary",
"cobertura"
],
"modulePathIgnorePatterns": [
"node_modules"
],
"reporters": [
"default",
[
"jest-junit",
{
"suiteName": "jest tests",
"outputDirectory": "test-output",
"outputName": "junit.xml"
}
]
],
"resetModules": true,
"restoreMocks": true,
"testEnvironment": "node"
},
"standard": {
"ignore": [
"/test/"
]
}
}