-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.9 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.9 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "beefup",
"version": "1.5.0",
"description": "BeefUp - Just a jQuery accordion plugin",
"main": "dist/js/jquery.beefup.min.js",
"keywords": [
"accordion",
"jquery",
"css",
"javascript",
"plugin",
"collapsible"
],
"homepage": "https://schascha.github.io/BeefUp/",
"authors": [
"Sascha Künstler <contact.schascha@gmail.com> (https://www.schaschaweb.de)"
],
"repository": {
"type": "git",
"url": "https://github.com/Schascha/BeefUp"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Schascha/BeefUp/issues"
},
"watch": {
"uglify": "./src/js/*.js"
},
"scripts": {
"build": "run-s copy uglify scss postcss",
"start": "run-p watch \"scss -- -w\"",
"test": "run-p eslint stylelint jest",
"copy": "cp node_modules/jquery/dist/jquery.min.js dist/js/",
"eslint": "eslint src/js",
"jest": "jest src/js --coverage --verbose",
"postcss": "postcss -r dist/css/*.css dist/css/**/*.css",
"scss": "sass --style expanded --no-source-map src/scss:dist/css",
"stylelint": "stylelint \"./src/scss/**/*.scss\"",
"uglify": "uglifyjs src/js/jquery.beefup.js -m -o dist/js/jquery.beefup.min.js --comments /^!/",
"watch": "npm-watch uglify"
},
"dependencies": {
"jquery": ">=1.8.0"
},
"devDependencies": {
"@schascha/eslint-config": "0.3.0",
"@schascha/stylelint-config": "^1.0.0",
"eslint": "^9.7.0",
"eslint-plugin-jest": "^28.5.0",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"npm-run-all": "^4.1.5",
"npm-watch": "^0.13.0",
"postcss": "^8.3.7",
"postcss-cli": "^11.0.0",
"postcss-preset-env": "^9.3.0",
"postcss-scss": "^4.0.3",
"sass": "^1.42.1",
"stylelint": "^16.2.1",
"uglify-js": "^3.14.2"
},
"engines": {
"node": "*"
},
"files": [
"src",
"!src/js/*.test.js",
"!src/**/docs",
"dist",
"!dist/**/docs"
]
}