-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.44 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.44 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "select-actions",
"type": "module",
"version": "0.0.13",
"private": true,
"description": "Simple & customizable multi/single-select picker, written in vanilla JS",
"source": "src/index.js",
"exports": {
"default": "./dist/select-actions.min.js"
},
"amdName": "SelectActions",
"scripts": {
"build": "microbundle -o dist/select-actions.min.js -f umd --sourcemap false --no-pkg-main",
"eslint": "eslint src/*",
"prettier": "prettier --write .",
"test": "jest --detectOpenHandles --forceExit",
"test-watch": "jest --detectOpenHandles --watchAll",
"watch": "microbundle -o dist/select-actions.min.js -f umd --no-pkg-main watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcmatias/js-multiselect.git"
},
"keywords": [
"select",
"multiselect",
"picker",
"search",
"dropdown"
],
"jest": {
"setupFilesAfterEnv": [
"./jestGlobalSetup.js"
]
},
"author": "",
"license": "(LGPL-3.0)",
"bugs": {
"url": "https://github.com/marcmatias/js-multiselect/issues"
},
"files": [
"dist/select-actions.min.js",
"dist/select-actions.min.css",
"README.md"
],
"homepage": "https://github.com/marcmatias/js-multiselect#readme",
"devDependencies": {
"jest": "^29.3.1",
"lint": "^0.7.0",
"lite-server": "^2.6.1",
"microbundle": "^0.15.1",
"prettier": "^2.7.1",
"puppeteer": "^19.2.2"
},
"dependencies": {}
}