-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathpackage.json
57 lines (57 loc) · 1.41 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
{
"name": "accordion-js",
"version": "3.4.0",
"description": "Lightweight and accessible accordion module created in pure Javascript",
"main": "dist/accordion.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/michu2k/Accordion.git"
},
"keywords": [
"javascript",
"accordion",
"a11y",
"es6",
"accesibility",
"aria",
"javascript-library"
],
"author": "Michał Strumpf",
"homepage": "https://github.com/michu2k/Accordion#readme",
"license": "MIT",
"bugs": {
"url": "https://github.com/michu2k/Accordion/issues"
},
"scripts": {
"start:dev": "gulp",
"lint:check": "eslint \"**/*.{mjs,js}\"",
"lint:fix": "eslint \"**/*.{mjs,js}\" --fix",
"format:check": "prettier \"**/*.{mjs,js}\" --check --cache",
"format:fix": "prettier \"**/*.{mjs,js}\" --write --cache"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"browser-sync": "^3.0.3",
"eslint": "^9.17.0",
"gulp": "^5.0.0",
"gulp-autoprefixer": "^9.0.0",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-header-comment": "^0.10.0",
"gulp-rename": "^2.0.0",
"gulp-terser": "^2.1.0",
"prettier": "^3.4.2"
},
"browserslist": [
">0.15%",
"not dead",
"Chrome >= 80",
"Edge >= 80",
"Firefox >= 74",
"Opera >= 68",
"Safari >= 13",
"not op_mini all",
"not IE 11"
]
}