-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
72 lines (72 loc) · 2.2 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "extended-listbox",
"version": "6.0.0",
"description": "A simple to use javascript component as powerful alternative to the HTML <select> tag",
"main": "dist/js/extended-listbox.js",
"typings": "dist/extended-listbox.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/ckotzbauer/extended-listbox.git"
},
"keywords": [
"listbox",
"select",
"multiselect",
"form",
"input",
"ui"
],
"author": "Christian Kotzbauer",
"license": "MIT",
"bugs": {
"url": "https://github.com/ckotzbauer/extended-listbox/issues"
},
"homepage": "https://github.com/ckotzbauer/extended-listbox#readme",
"files": [
"dist",
"doc/pages",
"CHANGELOG.md",
"doc/ROADMAP.md"
],
"scripts": {
"build": "run-s build:pre build:build build:types build:post",
"build:pre": "rimraf dist",
"build:build": "ts-node --transpile-only build/build.ts",
"build:types": "tsc -p tsconfig.declarations.json",
"build:post": "ts-node --transpile-only build/build-post.ts",
"test": "run-s test:typecheck test:unit",
"test:typecheck": "tsc -p tsconfig.typecheck.json --noEmit",
"test:unit": "jest --config jest.json --coverage",
"format": "prettier --ignore-path .gitignore --trailing-comma es5 --write \"**/*.ts\"",
"lint": "eslint --ignore-path .gitignore --ignore-pattern dist/ --ignore-pattern doc/ \"**/*.ts\""
},
"devDependencies": {
"@rollup/plugin-typescript": "11.1.6",
"@types/autoprefixer": "10.2.4",
"@types/jest": "29.5.14",
"@types/ncp": "2.0.8",
"@types/node": "20.17.7",
"@types/node-sass": "4.11.8",
"@types/sass": "1.45.0",
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.15.0",
"autoprefixer": "10.4.20",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"ncp": "2.0.0",
"npm-run-all2": "6.2.6",
"postcss": "8.4.49",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"rollup": "4.27.4",
"sass": "1.81.0",
"terser": "5.36.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"typescript": "5.7.2"
}
}