This repository has been archived by the owner on Feb 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
60 lines (60 loc) · 2.09 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
{
"name": "@joomla/joomla-a11y-checker",
"version": "1.0.0",
"description": "Jooa11y is an accessibility and quality assurance tool that visually highlights common accessibility and usability issues.",
"main": "src/js/jooa11y.js",
"repository": {
"type": "git",
"url": "git+https://github.com/joomla-projects/joomla-a11y-checker.git#joomla"
},
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/joomla-projects/joomla-a11y-checker/issues"
},
"homepage": "https://github.com/joomla-projects/joomla-a11y-checker",
"main": "src/js/jooa11y.js",
"keywords": [
"Joomla",
"a11y",
"javascript",
"accessibility"
],
"author": "Joomla! - Open Source Matters, Inc.",
"scripts": {
"build": "rimraf dist && node ./node_modules/rollup/dist/bin/rollup -c rollup.config.js",
"lint": "npm run lint:css && npm run lint:js",
"lint:js": "node ./node_modules/eslint/bin/eslint.js src",
"lint:css": "stylelint --config .stylelintrc.json -s scss \"src/scss/**/*.scss\"",
"serve": "npm run build && node ./docs.js && light-server -p 8080 -b localhost -s ./ -w \"src/**/* # npm run build && node ./docs.js # reload\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^3.0.0",
"autoprefixer": "^10.2.6",
"cssnano": "^5.0.6",
"eslint": "^7.30.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"light-server": "^2.9.1",
"postcss": "^8.3.10",
"rimraf": "^3.0.2",
"rollup": "^2.52.7",
"rollup-plugin-import-css": "^3.0.2",
"rollup-plugin-sass": "^1.2.9",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.35.1",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.19.0"
},
"dependencies": {
"tippy.js": "^6.3.7"
}
}