forked from maykinmedia/dual-listbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.48 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
{
"name": "dual-listbox",
"version": "1.4.0",
"description": "Dual listbox for multi-select elements",
"browserslist": "> 0.05%",
"devDependencies": {
"c8": "^7.11.2",
"esbuild": "^0.14.38",
"esbuild-plugin-sass": "^1.0.1",
"jsdom": "^19.0.0",
"serve": "^13.0.2",
"vite": "^2.9.5",
"vitest": "^0.9.4"
},
"scripts": {
"test": "vitest run --coverage",
"build": "node build.js",
"serve": "serve",
"watch": "parcel watch ./src/*",
"lint": "prettier src/ -c",
"format": "prettier src/ -w",
"prepare-release": "npm format && npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maykinmedia/dual-listbox.git"
},
"keywords": [
"Select",
"Dual",
"Listbox",
"Multiselect",
"Multi"
],
"author": "Maykin Media <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/maykinmedia/dual-listbox/issues"
},
"homepage": "https://github.com/maykinmedia/dual-listbox#readme",
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!**/node_modules/**",
"!**/vendor/**"
],
"transform": {
"^.+\\.(js|jsx|mjs|cjs|ts|tsx)$": "<rootDir>/babelJest.js"
}
},
"dependencies": {
"prettier": "^2.6.2"
}
}