-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.18 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.18 KB
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
101
{
"name": "accessible-components",
"version": "1.0.12",
"description": "",
"keywords": [
"WAI-ARIA",
"accessibility",
"keyboard"
],
"main": "postcss.config.js",
"directories": {
"doc": "docs"
},
"dependencies": {
"@babel/polyfill": "^7.11.5",
"http-server": "^0.12.3"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.8.3",
"@babel/register": "^7.5.5",
"autoprefixer": "^9.6.1",
"axios": "^1.1.2",
"chai": "^4.3.6",
"core-js": "^3.2.1",
"cpy": "^9.0.1",
"cypress": "^10.6.0",
"cypress-plugin-tab": "^1.0.5",
"eslint": "^8.25.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.6",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-markdown": "^3.0.0",
"execa": "^6.1.0",
"fs-extra": "^10.1.0",
"gh-rate-limit": "^1.0.0",
"mocha": "^10.0.0",
"mochawesome": "^7.1.3",
"mochawesome-merge": "^4.2.1",
"mochawesome-report-generator": "^6.2.0",
"nodemon": "^2.0.2",
"normalize-html-whitespace": "^1.0.0",
"numeral": "^2.0.6",
"postcss": "^8.4.18",
"postcss-cli": "^10.0.0",
"postcss-custom-properties": "^12.1.9",
"postcss-pxtorem": "^6.0.0",
"postcss-typescale": "^0.2.3",
"progress-barjs": "^2.2.1",
"replace-in-file": "^6.3.5",
"replace-in-files": "^2.0.3",
"sass": "^1.49.9",
"stylelint": "^13.3.1",
"stylelint-order": "^4.0.0",
"stylelint-scss": "^3.16.1",
"stylelint-selector-bem-pattern": "^2.1.0",
"tenon-node": "^0.4.1",
"wordwrap": "^1.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dotherightthing/accessible-components.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dotherightthing/accessible-components/issues"
},
"homepage": "https://github.com/dotherightthing/accessible-components#readme",
"config": {
"wpdtrt_base_url_local": "http://domain.local",
"wpdtrt_npm_scripts": "./node_modules/wpdtrt-npm-scripts"
},
"scripts": {
"preinstall": "chmod a+x scripts/**/*.sh && chmod a+x scripts/**/*.mjs",
"changelog": "./scripts/changelog/changelog.sh",
"compile": "./scripts/compile/css.sh && ./scripts/compile/js.sh",
"lint": "./scripts/lint/css.sh && ./scripts/lint/js.sh && ./scripts/lint/php.sh",
"prerelease": "./scripts/lint/css.sh && ./scripts/lint/js.sh && ./scripts/compile/css.sh && ./scripts/compile/js.sh",
"release": "node ./scripts/release/copy-files.mjs",
"server": "http-server ./ -c-1 -o",
"test:js": "npm run test:js",
"test:jsui": "npx cypress open",
"version": "./scripts/changelog/changelog.sh && git add ./CHANGELOG.md ./package.json && git commit -m \"Bump version\" && git tag -a ${npm_package_version} -m \"Bump version\"",
"watch": "nodemon"
},
"eslintConfig": {
"globals": {
"KeyboardHelpers": true,
"Label": true,
"SingleSelectListbox": true,
"TabbedCarousel": true
}
}
}