-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
92 lines (92 loc) · 2.63 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
{
"name": "@x-govuk/govuk-eleventy-plugin",
"version": "6.7.0",
"description": "Write documentation using Markdown and publish it using GOV.UK styles",
"keywords": [
"govuk",
"government",
"eleventy",
"eleventy-plugin"
],
"homepage": "https://x-govuk.github.io/govuk-eleventy-plugin/",
"bugs": {
"url": "https://github.com/x-govuk/govuk-eleventy-plugin/issues"
},
"contributors": [
{
"name": "Paul Robert Lloyd",
"url": "https://paulrobertlloyd.com"
}
],
"license": "MIT",
"files": [
"components",
"layouts",
"lib"
],
"main": "index.js",
"sass": "lib/govuk.scss",
"repository": {
"type": "git",
"url": "https://github.com/x-govuk/govuk-eleventy-plugin.git"
},
"scripts": {
"prebuild": "rimraf _site",
"build": "eleventy",
"predev": "rimraf _site",
"dev": "eleventy --serve --watch",
"start": "eleventy --serve",
"lint:prettier": "prettier . --check",
"lint:prettier:fix": "prettier . --write",
"lint:js": "eslint '**/*.js'",
"lint:js:fix": "eslint '**/*.js' --fix",
"lint:scss": "stylelint '**/*.scss'",
"lint:scss:fix": "stylelint '**/*.scss' --fix",
"lint": "npm run lint:prettier && npm run lint:js && npm run lint:scss",
"lint:fix": "npm run lint:prettier:fix && npm run lint:js:fix && npm run lint:scss:fix",
"test": "node --test",
"coverage": "node --test --experimental-test-coverage",
"release": "np"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@11ty/eleventy": "^2.0.0",
"@11ty/eleventy-navigation": "^0.3.2",
"@11ty/eleventy-plugin-rss": "^1.0.0",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@x-govuk/govuk-prototype-components": "^3.0.0",
"deepmerge": "^4.2.2",
"govuk-frontend": "^5.6.0",
"luxon": "^3.0.1",
"markdown-it-abbr": "^2.0.0",
"markdown-it-anchor": "^9.0.0",
"markdown-it-deflist": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-govuk": "^0.4.0",
"markdown-it-image-figures": "^2.0.0",
"markdown-it-ins": "^4.0.0",
"markdown-it-mark": "^4.0.0",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"markdown-it-table-of-contents": "^0.8.0",
"rimraf": "^5.0.0",
"rollup": "^4.1.0",
"sass": "^1.45.1",
"smartypants": "^0.2.0"
},
"devDependencies": {
"@x-govuk/eslint-config": "^0.0.1",
"@x-govuk/govuk-eleventy-plugin": "file:./",
"np": "^10.0.0",
"prettier": "^3.1.0",
"stylelint": "^16.0.0",
"stylelint-config-gds": "^2.0.0",
"stylelint-order": "^6.0.0"
},
"engines": {
"node": ">=18.17"
}
}