forked from NickDJM/accessible-menu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.33 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
81
82
83
84
85
{
"name": "@digitaldeployment/accessible-menu",
"version": "2.1.0",
"description": "A JavaScript library to help you generate WCAG accessible menus in the DOM.",
"main": "index.js",
"files": [
"index.js",
"dist/",
"src/_baseMenu.js",
"src/disclosureMenu.js",
"src/eventHandlers.js",
"src/menuItem.js",
"src/menuToggle.js",
"src/menubar.js",
"src/validate.js"
],
"scripts": {
"preinstall": "npx npm-force-resolutions || true",
"commit": "npx git-cz",
"lint": "npx eslint --ext .js --ignore-path .eslintignore .",
"fix": "npm run lint -- --fix",
"prerelease": "npm run lint && npm run build",
"release": "git add dist/. && npx standard-version -a",
"compile:test": "npx babel test/js --out-dir test/ie/js && npx sass test/scss:test/css",
"build": "npx rollup --config .rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NickDJM/accessible-menu.git"
},
"keywords": [
"menu",
"accessible",
"accessibility",
"wai-aria",
"aria",
"a11y",
"nav",
"navigation"
],
"author": "Nick Milton",
"license": "ISC",
"bugs": {
"url": "https://github.com/NickDJM/accessible-menu/issues"
},
"homepage": "https://github.com/NickDJM/accessible-menu#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@rollup/plugin-node-resolve": "^7.1.3",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsdoc": "^24.0.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"rollup": "^2.8.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^5.3.0",
"sass": "^1.26.5",
"standard-version": "^8.0.1",
"terser": "^4.6.13"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"core-js": "^3.6.5"
},
"resolutions": {
"yargs-parser": "^18.1.2"
}
}