forked from alphagov/govuk-frontend
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
128 lines (128 loc) · 3.92 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"private": true,
"name": "navody-digital-repository",
"description": "Used only for the development of GOV.UK Frontend, see `package/package.json` for the published `package.json`",
"engines": {
"node": "12.13.1"
},
"license": "MIT",
"scripts": {
"preinstall": "node bin/check-nvmrc.js",
"prestart": "node bin/check-nvmrc.js",
"start": "gulp dev",
"heroku": "gulp copy-assets && gulp sassdoc && node app/start.js",
"build-release": "node bin/check-nvmrc.js && ./bin/build-release.sh",
"publish-release": "node bin/check-nvmrc.js && ./bin/publish-release.sh",
"pre-release": "node bin/check-nvmrc.js && ./bin/pre-release.sh",
"build:package": "node bin/check-nvmrc.js && gulp build:package --destination 'package' && npm run test:build:package",
"build:dist": "node bin/check-nvmrc.js && gulp build:dist --destination 'dist' && npm run test:build:dist",
"test": "standard && gulp test && gulp copy-assets && jest --testPathIgnorePatterns='after-*'",
"test:dependencies": "npm ls --depth=0",
"test:build:package": "jest tasks/gulp/__tests__/after-build-package.test.js",
"test:build:dist": "jest tasks/gulp/__tests__/after-build-dist.test.js",
"build:examples": "rm -rf ./dist/examples/ && wget http://localhost:3000/ --accept-regex \"/(examples|public|assets)/\" -r -e robots=off -nc -k -xnH --domain localhost -E -P ./dist/examples/"
},
"devDependencies": {
"acorn": "^7.4.0",
"autoprefixer": "^9.8.6",
"body-parser": "^1.18.3",
"cheerio": "^1.0.0-rc.3",
"cookie-parser": "^1.4.5",
"cross-env": "^7.0.3",
"cssnano": "^4.1.10",
"del": "^5.0.0",
"eslint": "^6.8.0",
"express": "^4.16.4",
"express-validator": "^6.6.1",
"front-matter": "^4.0.2",
"glob": "^7.1.4",
"govuk-elements-sass": "3.1.3",
"govuk_frontend_toolkit": "^9.0.0",
"govuk_template_jinja": "^0.26.0",
"gulp": "^4.0.2",
"gulp-better-rollup": "3.1.0",
"gulp-concat": "^2.6.1",
"gulp-debug": "^4.0.0",
"gulp-eol": "^0.2.0",
"gulp-filter": "^6.0.0",
"gulp-if": "^3.0.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^4.1.0",
"gulp-stylelint": "^13.0.0",
"gulp-task-listing": "^1.1.0",
"gulp-uglify": "^3.0.2",
"html5shiv": "^3.7.3",
"jest": "^26.4.2",
"jest-axe": "^3.5.0",
"jest-puppeteer": "^4.4.0",
"jest-serializer-html": "^7.0.0",
"jquery": "1.12.4",
"js-yaml": "^3.14.0",
"map-stream": "0.0.7",
"marked": "^2.0.0",
"merge-stream": "^2.0.0",
"node-sass": "^4.14.1",
"nodemon": "^2.0.4",
"oldie": "^1.3.0",
"outdent": "^0.7.1",
"postcss-pseudo-classes": "0.2.0",
"postcss-scss": "^2.1.1",
"puppeteer": "^2.1.1",
"recursive-readdir": "^2.2.2",
"request": "^2.88.2",
"sass-color-helpers": "^2.1.1",
"sassdoc": "^2.7.3",
"shuffle-seed": "^1.1.6",
"standard": "^14.3.4",
"stylelint": "^13.7.1",
"stylelint-config-gds": "^0.1.0",
"stylelint-order": "^4.1.0",
"vinyl-paths": "^3.0.1",
"yargs": "^15.4.1"
},
"optionalDependencies": {
"fsevents": "*"
},
"browserslist": [
">0.1%",
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Edge versions",
"last 2 Samsung versions",
"Safari >= 9",
"ie 8-11",
"iOS >= 9"
],
"standard": {
"globals": [
"page",
"browser",
"context",
"jestPuppeteer"
],
"ignore": [
"/dist/**/*.js",
"/package/**/*.js",
"/lib/replace-diacritics.js",
"/lib/slovak-municipalities.js",
"/src/govuk/vendor/polyfills/**/*.js"
]
},
"jest": {
"preset": "jest-puppeteer",
"testTimeout": 10000,
"setupFilesAfterEnv": [
"./config/jest-setup.js"
],
"snapshotSerializers": [
"jest-serializer-html"
]
},
"dependencies": {
"accessible-autocomplete": "^1.6.2",
"express-writer": "0.0.4",
"popper.js": "^1.14.6"
}
}