-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.92 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
57
58
59
60
61
62
63
64
65
66
{
"name": "virtual-select-plugin",
"version": "1.3.0",
"description": "A javascript plugin for dropdown with virtual scroll",
"scripts": {
"start": "webpack --mode development --watch",
"build": "webpack --mode production",
"validate": "tsc && eslint src --fix && stylelint --fix src/sass/**/*.scss",
"typecheck": "tsc",
"lint:js": "eslint src",
"lint:css": "stylelint src/sass/**/*.scss",
"test:scripts": "node --test \"scripts/ci/**/*.test.mjs\"",
"test:build": "node --test \"scripts/build-checks/**/*.test.mjs\"",
"docs": "docsify serve docs",
"t": "docsify serve docs -p 3001 | cypress open --e2e -b chrome",
"test": "node scripts/ci/run-e2e.mjs"
},
"author": "Sa Si Dev",
"keywords": [
"javascript",
"plugin",
"select",
"dropdown",
"virtual select",
"virtual scroll"
],
"license": "ISC",
"browserslist": [
">= 0.5%",
"not ie 11",
"not op_mini all",
"not dead"
],
"dependencies": {
"tooltip-plugin": "^1.0.16"
},
"devDependencies": {
"@babel/core": "^8.0.1",
"@babel/preset-env": "^8.0.2",
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"autoprefixer": "^10.5.4",
"babel-loader": "^10.1.1",
"css-loader": "^7.1.4",
"cypress": "^15.19.0",
"cypress-real-events": "^1.15.0",
"docsify-cli": "^5.0.0",
"eslint": "^10.8.0",
"eslint-plugin-import-x": "^4.17.1",
"eslint-plugin-sonarjs": "^4.2.0",
"filemanager-webpack-plugin": "^10.0.1",
"globals": "^17.9.0",
"mini-css-extract-plugin": "^2.10.2",
"popover-plugin": "^1.0.13",
"postcss-loader": "^8.2.1",
"sass": "^1.102.0",
"sass-loader": "^17.0.0",
"stylelint": "^17.14.1",
"stylelint-config-sass-guidelines": "^13.0.0",
"terser-webpack-plugin": "^5.6.1",
"typescript": "^5.9.3",
"unminified-webpack-plugin": "^3.0.0",
"webpack": "^5.109.2",
"webpack-cli": "^7.2.2"
}
}