forked from grubersjoe/slide-menu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.92 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.92 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
{
"name": "smdm-slide-menu",
"version": "3.0.0",
"author": "Jakob Osterberger <jo@studiomitte.com>",
"license": "MIT",
"type": "module",
"description": "A library agnostic multilevel page menu with a smooth slide effect based on CSS transitions, focused on accessibility.",
"browserslist": [
"> 1%"
],
"keywords": [
"menu",
"multi level",
"navigation",
"foldable",
"mobile",
"accessibility"
],
"repository": {
"type": "git",
"url": "git+https://github.com/studiomitte/slide-menu.git"
},
"bugs": "https://github.com/studiomitte/slide-menu/issues",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"./*",
"dist/*",
"src/*"
],
"devDependencies": {
"@cypress-audit/pa11y": "^1.4.2",
"chrome-launcher": "^1.1.2",
"cypress": "^13.13.1",
"cypress-real-events": "^1.13.0",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"puppeteer": "~9.1.1",
"sass": "^1.77.2",
"typescript": "^6.0.2",
"vite": "^8.0.2"
},
"scripts": {
"test-a11y": "pa11y http://frontend:8080/demo/js-demo.html --config ./pa11y.config.json",
"test": "ddev test",
"build": "npx tsc -p . && npx vite build",
"format": "oxfmt",
"lint": "oxlint 'src/lib/SlideMenu.ts' 'src/lib/Slide.ts' 'src/lib/SlideMenuOptions.ts'",
"watch": "npx vite --port 8080",
"typecheck": "npx tsc --noEmit",
"pre-version": "npm run lint && npm run typecheck && npm run format && npm run test && npm run build",
"publish-version": "git push && git push --tags && npm publish",
"version-patch": "npm run pre-version && npm version patch --force -m \"[RELEASE] patch version %s\"",
"version-minor": "npm run pre-version && npm version minor --force -m \"[RELEASE] minor version %s\"",
"version-major": "npm run pre-version && npm version major --force -m \"[RELEASE] major version %s\""
},
"dependencies": {
"custom-event-polyfill": "1.0.7"
}
}