-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.2 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
{
"name": "bulmaselect",
"version": "1.0.6",
"description": "A fast Vanilla JavaScript multiselect library for the web.",
"author": "resolv <resolvedxd@gmail.com> (https://github.com/resolvedxd)",
"contributors": [
"smolespi <espi@lesbian.codes> (https://lesbian.codes)"
],
"license": "MIT",
"homepage": "https://github.com/resolvedxd/bulmaselect",
"main": "dist/bulmaselect.min.js",
"bugs": {
"url": "https://github.com/resolvedxd/bulmaselect/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/resolvedxd/bulmaselect.git"
},
"keywords": [
"bulma",
"multi",
"multiple",
"multipleselect",
"multiselect",
"multiselection",
"multiselections"
],
"scripts": {
"build": "terser --compress --mangle --output dist/bulmaselect.min.js src/index.js",
"beautify": "beautify-proj -i . -o ../ -c .jsbeautifyrc -e ./node_modules",
"deploy": "npm run beautify && npm run lint && npm run build && git add dist/* && npm version patch --force && git push && npm publish",
"lint": "eslint --fix .",
"test": "eslint ."
},
"devDependencies": {
"beautify-proj": "^1.0.0",
"eslint": "^7.10.0",
"terser": "^5.3.3"
}
}