forked from x-govuk/govuk-design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.78 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
{
"name": "govuk_design_system",
"private": true,
"description": "GOV.UK Design System",
"repository": {
"type": "git",
"url": "git+https://github.com/alphagov/govuk-design-system.git"
},
"author": "Government Digital Service developers",
"license": "MIT",
"bugs": {
"url": "https://github.com/alphagov/govuk-design-system/issues"
},
"homepage": "https://github.com/alphagov/govuk-design-system#readme",
"scripts": {
"preinstall": "node bin/check-nvmrc.js",
"prestart": "node bin/check-nvmrc.js",
"build": "node tasks/build.js",
"start": "node tasks/serve.js",
"test": "npm run lint && jest",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "standard",
"lint:scss": "sass-lint '**/*.scss' --verbose --ignore 'node_modules/**/*.scss'"
},
"standard": {
"ignore": [
"/src/javascripts/vendor/"
]
},
"dependencies": {
"acorn": "^6.4.1",
"ajv": "^6.10.0",
"autoprefixer": "^9.5.1",
"clipboard": "^2.0.4",
"connect": "^3.6.6",
"eslint": "^5.16.0",
"govuk-frontend": "^3.13.1",
"gray-matter": "^4.0.2",
"highlight.js": "^10.4.1",
"html5shiv": "^3.7.3",
"lunr": "^2.3.6",
"metalsmith-postcss": "^4.2.0",
"modernizr": "^3.7.1",
"postcss": "^6.0.23",
"sass-export": "^1.0.4",
"serve-static": "^1.13.2",
"slugger": "^1.0.1"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.14.0",
"accessible-autocomplete": "^2.0.2",
"axe-puppeteer": "^1.0.0",
"fs-extra": "^7.0.1",
"iframe-resizer": "^3.6.6",
"jest": "^25.1.0",
"jest-puppeteer": "^4.1.1",
"js-beautify": "^1.9.1",
"jstransformer-marked": "^1.0.3",
"jstransformer-nunjucks": "^0.5.0",
"marked": "^0.7.0",
"metalsmith": "^2.3.0",
"metalsmith-assets": "^0.1.0",
"metalsmith-broken-link-checker": "^1.0.1",
"metalsmith-browser-sync": "^1.1.1",
"metalsmith-canonical": "^1.2.0",
"metalsmith-env": "^2.1.1",
"metalsmith-fingerprint-ignore": "^2.0.0",
"metalsmith-in-place": "^4.4.2",
"metalsmith-layouts": "^2.3.1",
"metalsmith-permalinks": "^2.2.0",
"metalsmith-rollup": "^2.0.0",
"metalsmith-sass": "^1.7.0",
"metalsmith-tagcleaner": "0.0.2",
"metalsmith-uglify": "^2.4.0",
"nunjucks": "^3.2.2",
"puppeteer": "^1.14.0",
"request": "^2.88.0",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.3",
"sass-lint": "^1.13.1",
"sitemap": "^2.1.0",
"standard": "^12.0.1"
},
"engines": {
"node": "~14.17.6"
},
"jest": {
"preset": "jest-puppeteer",
"setupFilesAfterEnv": [
"./jest.setup.js"
],
"testURL": "https://design-system.service.gov.uk"
},
"browserslist": [
"last 2 versions",
"ie 8",
"ie 9",
"iOS 9"
]
}