forked from taoqf/slim-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.46 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
{
"name": "slim-select",
"description": "Slim advanced select dropdown",
"version": "1.17.0",
"author": "Brian Voelker <[email protected]> (http://webiswhatido.com)",
"homepage": "https://slimselectjs.com",
"license": "MIT",
"types": "./dist/index.d.ts",
"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",
"repository": {
"type": "git",
"url": "git+https://github.com/brianvoe/slim-select.git"
},
"keywords": [
"select",
"vanilla",
"dropdown",
"search",
"multiselect"
],
"scripts": {
"clean": "del-cli ./dist/",
"lint": "tslint -p tsconfig.json",
"compile-css": "node-sass --output-style expanded ./sass/slimselect.scss ./dist/slimselect.css && node-sass --output-style compressed ./sass/slimselect.scss ./dist/slimselect.min.css",
"build": "npm run clean && npm run lint && npm run compile-ts && webpack --config webpack.build.config.js && tsc -m umd && npm run compile-css",
"compile-ts": "tsc",
"dev": "vue-build dev",
"prod": "sh prod.sh",
"test": "npm run dev"
},
"devDependencies": {
"chance": "^1.0.16",
"clipboard": "^2.0.1",
"custom-event-polyfill": "^0.3.0",
"del-cli": "^1.1.0",
"node-sass": "^4.9.3",
"prismjs": "^1.15.0",
"tslint": "^5.11.0",
"typescript": "^3.0.3",
"vue-build": "^2.3.1",
"webpack": "^4.19.0",
"webpack-cli": "^3.1.0"
}
}