-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.35 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
{
"name": "@dotburo/select-input",
"version": "1.3.2",
"description": "Lightweight & dynamic select dropdown with an input field, without dependencies",
"main": "dist/select-input-min.js",
"module": "src/select-input.js",
"scripts": {
"build": "rollup -c && npm run build:css && npm run copy:docs",
"build:css": "cleancss -o dist/base.min.css src/base.css",
"build:babel": "rollup --config rollup.config-babel.js",
"copy:docs": "cp ./dist/select-input-umd.js ./docs && cp ./dist/base.min.css ./docs",
"watch": "rollup -c -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dotburo/select-input.git"
},
"keywords": [
"vanilla-javascript",
"select",
"input",
"dropdown",
"dropdown-menus",
"tagging"
],
"author": "dotburo <code@dotburo.org> (https://dotburo.org)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/dotburo/select-input/issues"
},
"homepage": "https://github.com/dotburo/select-input#readme",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"clean-css-cli": "^4.3.0",
"rollup": "^1.31.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-terser": "^5.2.0"
},
"dependencies": {}
}