-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
77 lines (77 loc) · 2.58 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
{
"name": "a11y-guidelines",
"description": "Ameba Accessibility Guidelines",
"version": "0.0.0",
"author": "CyberAgent, Inc.",
"dependencies": {
"@openameba/spindle-icons": "^1.0.0",
"@openameba/spindle-syntax-themes": "^1.0.0",
"ameba-color-palette.css": "github:openameba/ameba-color-palette.css#feature/dark-mode",
"postcss": "^8.2.6",
"textlint-filter-rule-comments": "^1.2.2"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.0",
"@openameba/textlint-rule-preset-ameba": "^0.5.0",
"autoprefixer": "^10.0.0",
"bin-wrapper": "^4.1.0",
"cssnano": "^7.0.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"markdown-it-anchor": "^9.0.0",
"npm-run-all2": "^7.0.0",
"postcss-cli": "^11.0.0",
"postcss-custom-properties": "^14.0.0",
"postcss-import": "^16.0.0",
"postcss-single-charset": "^2.0.0",
"prettier": "^3.0.0",
"textlint": "^14.0.0",
"textlint-filter-rule-allowlist": "^4.0.0",
"textlint-rule-preset-japanese": "^10.0.0",
"textlint-rule-preset-jtf-style": "^3.0.0",
"textlint-rule-prh": "^6.0.0"
},
"engines": {
"node": "22.13.1",
"npm": "11.0.0"
},
"keywords": [
"accessibility"
],
"license": "SEE LICENSE IN LICENSE.md",
"lint-staged": {
"src/*.md": "textlint --dry-run",
"*.+(css|js)": "prettier --check",
"package.json": "npx fixpack --dryRun",
"yarn.lock": "node -e 'process.exitCode = 1'"
},
"postcss": {
"plugins": {
"postcss-custom-properties": {},
"postcss-import": {},
"autoprefixer": {},
"postcss-single-charset": {}
}
},
"private": true,
"repository": "openameba/a11y-guidelines",
"scripts": {
"build": "npm-run-all build:*",
"build:css": "postcss src/styles/*.css --dir public/css",
"build:html": "NODE_ENV=production eleventy",
"build:svg": "npx cpx 'node_modules/@openameba/spindle-icons/dist/svg/+(circle_bold|minus_bold|cross_bold|plus_bold).svg' src/img/icon",
"fixpack": "npx fixpack",
"format": "run-p format:*",
"format:prettier": "prettier --write {src,npm_scripts,.eleventy.js,package.json}",
"format:text": "textlint --fix content src",
"lint": "run-p lint:*",
"lint:prettier": "prettier -c {src,npm_scripts,.eleventy.js,package.json}",
"lint:text": "textlint content src",
"prepare": "[ -n \"$CI\" ] || husky install",
"serve": "DEBUG=Eleventy* eleventy --serve --watch",
"start": "npm-run-all -p serve watch",
"styles": "postcss src/styles/*.css --dir public/css",
"watch": "npm run watch:styles",
"watch:styles": "npm run styles --watch"
}
}