-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.29 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
{
"name": "@rickycourtes/accordion",
"version": "1.0.6",
"description": "Lightweight, full accessible accordions",
"main": "src/js/accordion.js",
"style": "src/scss/accordion.scss",
"scripts": {
"test": "npm run lint && echo \"View test/ in browser\" && exit 1",
"lint": "node bin/lint-json.js && npx eslint .",
"lintFix": "npx eslint . --fix",
"dist": "npm run buildJS && npm run minifyJS && npm run buildCSS && npm run minifyCSS",
"buildJS": "node bin/build-js.js",
"minifyJS": "npx uglifyjs src/js/accordion.js -o dist/accordion.min.js --mangle --comments /^!/",
"buildCSS": "node bin/build-css.js",
"minifyCSS": "node bin/minify-css.js",
"version": "node bin/version.js && npm run dist && git add -A src dist"
},
"devDependencies": {
"clean-css": "^4.2.3",
"eslint": "^7.23.0",
"node-sass": "^5.0.0",
"uglify-js": "^3.13.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RickyCourtes/accordion.git"
},
"keywords": [
"accordion",
"simple"
],
"author": "Ricky Courtes",
"license": "MIT",
"bugs": {
"url": "https://github.com/RickyCourtes/accordion/issues"
},
"homepage": "https://github.com/RickyCourtes/accordion#readme",
"bin": {
"accordion": ".eslintrc.js"
},
"dependencies": {}
}