-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.37 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
{
"name": "accessible-menu-bootstrap-4",
"version": "1.0.4",
"description": "A JavaScript library to help you generate WAI-ARIA accessible menus with in the DOM using Bootstrap 4.",
"main": "index.js",
"files": [
"index.js",
"dist/",
"src/"
],
"scripts": {
"prepare": "husky install",
"commit": "git-cz",
"lint": "npm run eslint -- --fix && npm run prettier -- --write",
"eslint": "eslint --ext .js .",
"prettier": "prettier '**/*.js' --ignore-path .eslintignore",
"prerelease": "npm run lint && npm run build && npm test",
"release": "git add dist/. && standard-version -a",
"prebuild": "npm run build:docs",
"build": "rollup --config .rollup.config.js",
"build:docs": "jsdoc -c jsdoc.config.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NickDJM/accessible-menu-bootstrap-4.git"
},
"keywords": [
"menu",
"accessible",
"accessibility",
"wai-aria",
"aria",
"a11y",
"nav",
"navigation",
"menubar",
"disclosure menu",
"treeview"
],
"author": "Nick Milton",
"license": "ISC",
"bugs": {
"url": "https://github.com/NickDJM/accessible-menu-bootstrap-4/issues"
},
"homepage": "https://github.com/NickDJM/accessible-menu-bootstrap-4#readme",
"dependencies": {
"accessible-menu": "^3.0.8"
},
"devDependencies": {
"@babel/cli": "^7.22.5",
"@babel/core": "^7.22.5",
"@babel/eslint-parser": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^48.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-extended": "^4.0.0",
"jsdoc": "^4.0.2",
"jsdoc-typeof-plugin": "^1.0.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rollup": "^2.79.1",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-terser": "^7.0.2",
"standard-version": "^9.5.0",
"terser": "^5.18.2"
}
}