-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.31 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
{
"name": "@x-govuk/govuk-prototype-components",
"version": "3.0.9",
"description": "Common and experimental components that are not yet part of the GOV.UK Design System",
"keywords": [
"govuk",
"design system",
"prototyping",
"components"
],
"homepage": "https://github.com/x-govuk/govuk-prototype-components#readme",
"bugs": {
"url": "https://github.com/x-govuk/govuk-prototype-components/issues"
},
"license": "MIT",
"files": [
"govuk-prototype-kit.config.json",
"govuk-prototype-kit",
"x-govuk"
],
"main": "x-govuk/all.js",
"module": "x-govuk/all.mjs",
"repository": {
"type": "git",
"url": "https://github.com/x-govuk/govuk-prototype-components.git"
},
"scripts": {
"prepublishOnly": "rollup --config",
"prebuild": "rimraf _site",
"build": "eleventy --quiet",
"start": "eleventy --serve --quiet",
"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": "npm run lint && npx govuk-prototype-kit@latest validate-plugin",
"release": "np"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"accessible-autocomplete": "^3.0.0",
"eventslibjs": "^1.2.0"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@x-govuk/eslint-config": "^0.0.1",
"@x-govuk/govuk-eleventy-plugin": "^6.0.0",
"@x-govuk/govuk-prototype-components": "file:./",
"iframe-resizer": "^4.3.9",
"js-beautify": "^1.14.11",
"np": "^10.0.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"rollup": "^4.4.0",
"stylelint": "^16.0.0",
"stylelint-config-gds": "^2.0.0",
"stylelint-order": "^6.0.4"
},
"peerDependencies": {
"govuk-frontend": "^5.0.0"
},
"engines": {
"node": ">=18"
},
"exports": {
".": {
"sass": "./x-govuk/all.scss",
"import": "./x-govuk/all.mjs",
"require": "./x-govuk/all.js"
}
}
}