-
-
Notifications
You must be signed in to change notification settings - Fork 648
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.46 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 3.46 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "multiple-select",
"main": "dist/multiple-select.min.js",
"version": "2.4.0",
"type": "module",
"title": "Multiple Select",
"description": "Multiple select is a jQuery plugin to select multiple elements with checkboxes :).",
"author": "wenzhixin <wenzhixin2010@gmail.com> (http://wenzhixin.net.cn/)",
"files": [
"dist/",
"src/",
"CHANGELOG.md",
"README.md",
"LICENSE",
"bower.json",
"index.d.ts",
"multiple-select.jquery.json"
],
"contributors": [
"Brett Zamir"
],
"scripts": {
"lint:js": "eslint src",
"lint:css": "stylelint src/**/*.scss",
"lint:spell": "cspell lint --no-progress 'src/**/*.{js,json,vue,scss}' 'site/docs/*.md' '*.md'",
"lint:editor": "editorconfig-checker -exclude dist",
"lint": "run-s lint:*",
"js:build:base": "rollup -c",
"js:build:min": "cross-env NODE_ENV=production rollup -c",
"js:build:banner": "find dist -name '*.min.js' -exec headr {} -o {} --version --homepage --author --license \\;",
"js:build:vue": "vite build && mv dist/multiple-select-vue.umd.cjs dist/multiple-select-vue.umd.js",
"js:build": "run-s js:build:*",
"css:build:scss": "sass --style=expanded --no-source-map src:src",
"css:build:base": "mkdir -p dist/themes && find src -name '*.css' | sed -e 'p;s/src/dist/' | xargs -n2 cp",
"css:build:min": "find dist -name '*.css' ! -name '*.min.css' -exec sh -c 'cleancss \"$1\" -o \"$(dirname \"$1\")/$(basename \"$1\" .css).min.css\"' _ {} \\;",
"css:build:banner": "find dist -name '*.min.css' -exec headr {} -o {} --version --homepage --author --license \\;",
"css:build": "run-s css:build:*",
"clean": "rm -rf dist",
"build": "run-s lint clean *:build",
"docs": "cd site/website && yarn install && yarn build",
"docs-server": "cd site/website && yarn start",
"css:dev": "sass --watch --style=expanded --no-source-map src:src",
"dev": "yarn css:dev & yarn docs-server"
},
"peerDependencies": {
"jquery": ">=3 <5"
},
"repository": {
"type": "git",
"url": "git://github.com/wenzhixin/multiple-select.git"
},
"license": "MIT",
"keywords": [
"multiple.select",
"select.list",
"multiple.choose",
"checkbox"
],
"homepage": "http://multiple-select.wenzhixin.net.cn",
"demo": "http://multiple-select.wenzhixin.net.cn/examples",
"bugs": {
"url": "https://github.com/wenzhixin/multiple-select/issues"
},
"docs": "http://multiple-select.wenzhixin.net.cn/documentation",
"download": "https://github.com/wenzhixin/multiple-select/archive/master.zip",
"engines": {},
"devDependencies": {
"@babel/core": "^7.29.7",
"@babel/eslint-parser": "^7.29.7",
"@babel/preset-env": "^7.29.7",
"@rollup/plugin-babel": "^7.1.0",
"@rollup/plugin-commonjs": "^29.0.3",
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-multi-entry": "^7.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@vitejs/plugin-vue": "^6.0.7",
"clean-css-cli": "^5.6.3",
"core-js": "^3.49.0",
"cross-env": "^10.1.0",
"cspell": "^10.0.1",
"editorconfig-checker": "^6.1.1",
"eslint": "^9.34.0",
"eslint-plugin-import": "^2.32.0",
"getopts": "^2.3.0",
"glob": "^13.0.6",
"globals": "^17.7.0",
"headr": "^0.0.4",
"npm-run-all2": "^8.0.4",
"rollup": "^4.62.2",
"sass": "^1.101.0",
"stylelint": "^17.14.0",
"stylelint-config-standard-scss": "^17.0.0",
"vite": "^8.1.4",
"vue": "^3.5.39"
}
}