forked from x-govuk/govuk-eleventy-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.35 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
{
"name": "govuk-eleventy-plugin",
"version": "3.0.2",
"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 public",
"build": "eleventy",
"predev": "rimraf public",
"dev": "eleventy --serve --watch",
"start": "eleventy --serve",
"lint": "standard && stylelint '**/*.scss'",
"test": "ava",
"test:watch": "ava --watch",
"coverage": "c8 ava"
},
"dependencies": {
"@11ty/eleventy": "^1.0.0",
"@11ty/eleventy-navigation": "^0.3.2",
"@11ty/eleventy-plugin-rss": "^1.1.2",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.1.1",
"deepmerge": "^4.2.2",
"govuk-frontend": "^4.3.0",
"govuk-prototype-components": "^1.0.0",
"luxon": "^3.0.1",
"markdown-it-abbr": "^1.0.4",
"markdown-it-anchor": "^8.4.1",
"markdown-it-deflist": "^2.1.0",
"markdown-it-footnote": "^3.0.3",
"markdown-it-govuk": "^0.1.0",
"markdown-it-image-figures": "^2.0.0",
"markdown-it-ins": "^3.0.1",
"markdown-it-mark": "^3.0.1",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-table-of-contents": "^0.6.0",
"rimraf": "^3.0.2",
"rollup": "^2.62.0",
"sass": "^1.45.1",
"smartypants": "^0.1.6"
},
"devDependencies": {
"ava": "^4.0.1",
"c8": "^7.11.0",
"govuk-eleventy-plugin": "file:./",
"standard": "^17.0.0",
"stylelint": "^ 14.6.1",
"stylelint-config-gds": "^0.2.0"
},
"engines": {
"node": "^16.0.0"
},
"publishConfig": {
"access": "public"
},
"c8": {
"reporter": [
"text",
"lcovonly"
]
},
"standard": {
"ignore": [
"!.eleventy.js"
]
},
"stylelint": {
"extends": "stylelint-config-gds/scss"
}
}