forked from brianvoe/slim-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.97 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
58
59
60
61
{
"name": "slim-select",
"description": "Slim advanced select dropdown",
"version": "1.27.1",
"author": "Brian Voelker <brian@webiswhatido.com> (http://webiswhatido.com)",
"homepage": "https://slimselectjs.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/brianvoe/slim-select/issues"
},
"engines": {
"node": ">=8"
},
"main": "dist/slimselect.min.js",
"exports": {
"require": "./dist/slimselect.min.js",
"import": "./dist/slimselect.min.mjs"
},
"style": "dist/slimselect.min.css",
"sass": "src/slim-select/slimselect.scss",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/brianvoe/slim-select.git"
},
"keywords": [
"select",
"vanilla",
"dropdown",
"search",
"multiselect"
],
"scripts": {
"dev": "vue-cli-service serve",
"library": "rm -r dist && cd src/slim-select && webpack && cd ../../ && npm run cleanDist && npm run renameDist && npm run mjs",
"cleanDist": "rm dist/slimselectcss.min.js && rm dist/slimselectcss.js",
"renameDist": "mv 'dist/slimselectcss.css' 'dist/slimselect.css' && mv 'dist/slimselectcss.min.css' 'dist/slimselect.min.css'",
"docs": "vue-cli-service build",
"build": "npm run docs && npm run library",
"mjs": "(printf 'var exports = {};'; cat dist/slimselect.min.js; printf 'export default exports.SlimSelect') > dist/slimselect.min.mjs",
"lint": "vue-cli-service lint"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.15",
"@vue/cli-plugin-typescript": "^4.5.15",
"@vue/cli-service": "^4.5.15",
"chance": "^1.1.8",
"clipboard": "^2.0.8",
"node-sass": "^5.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"prismjs": "^1.25.0",
"sass-loader": "^10.1.0",
"typescript": "^4.5.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"vue": "^2.6.14",
"vue-router": "^3.5.3",
"vue-template-compiler": "^2.6.14",
"vuex": "^3.6.2",
"webpack-cli": "^4.9.1"
}
}