-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
56 lines (56 loc) · 1.54 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
56
{
"name": "dual-listbox",
"version": "2.0.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": "^14.0.1",
"vite": "^2.9.13",
"vitest": "^0.9.4"
},
"scripts": {
"test": "vitest run --coverage",
"build": "node build.js",
"serve": "serve",
"watch": "nodemon -w ./src/ -e js,scss ./build.js",
"lint": "prettier src/ -c",
"format": "prettier src/ -w",
"prepare-release": "npm run 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": {
"nodemon": "^2.0.20",
"prettier": "^2.6.2"
}
}