forked from brianvoe/slim-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.73 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": "slim-select",
"description": "Slim advanced select dropdown",
"version": "1.18.7",
"author": "Brian Voelker <[email protected]> (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",
"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",
"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",
"lint": "vue-cli-service lint"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.2.0",
"@vue/cli-plugin-typescript": "^3.2.0",
"@vue/cli-service": "^3.2.0",
"ajv": "^6.6.1",
"chance": "^1.0.17",
"clipboard": "^2.0.4",
"node-sass": "^4.10.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"prismjs": "^1.15.0",
"sass-loader": "^7.0.1",
"typescript": "^3.2.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"vue": "^2.5.17",
"vue-router": "^3.0.2",
"vue-template-compiler": "^2.5.17",
"vuex": "^3.0.1",
"webpack-cli": "^3.1.2"
}
}