forked from ryersondmp/sa11y
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.18 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
{
"name": "sa11y",
"version": "3.0.0",
"description": "Sa11y is an accessibility quality assurance tool that visually highlights common accessibility and usability issues. Geared towards content authors, Sa11y straightforwardly identifies errors or warnings at the source with a simple tooltip on how to fix them.",
"main": "src/sa11y.js",
"author": "Adam Chaboryk, Toronto Metropolitan University",
"email": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/ryersondmp/sa11y.git"
},
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/ryersondmp/sa11y/issues"
},
"homepage": "https://sa11y.netlify.app",
"keywords": [
"Sa11y",
"a11y",
"javascript",
"accessibility"
],
"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",
"caniuse-lite": "^1.0.30001418",
"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"
}
}