forked from valor-software/ng2-select
-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
116 lines (116 loc) · 3.73 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "ngx-select-ex",
"version": "19.0.5",
"description": "Angular based replacement for select boxes",
"license": "MIT",
"private": false,
"author": "Konstantin Polyntsov <optimistex@gmail.com>",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:optimistex/ngx-select-ex.git"
},
"bugs": {
"url": "https://github.com/optimistex/ngx-select-ex/issues"
},
"homepage": "https://github.com/optimistex/ngx-select-ex#readme",
"scripts": {
"build": "npm run lint && npm run sync && npm run build:package && npm run test && npm run build:demo && git add -A",
"build:demo": "ng build ngx-select-ex-demo",
"build:package": "ng build ngx-select-ex",
"lint": "ng lint",
"lint:quiet": "ng lint --quiet",
"lint:fix": "ng lint --fix",
"lint:ngx-select-ex:quiet": "ng lint ngx-select-ex --quiet",
"lint:ngx-select-ex-demo:quiet": "ng lint ngx-select-ex-demo --quiet",
"ng": "ng",
"release": "standard-version --commit-all",
"release:major": "standard-version --release-as major --commit-all",
"sync": "npm run sync:version && npm run sync:readme && npm run sync:license",
"sync:version": "npm --prefix=projects/ngx-select-ex pkg set version=$(npm pkg get version | xargs)",
"sync:readme": "cp README.md projects/ngx-select-ex/README.md",
"sync:license": "cp LICENSE projects/ngx-select-ex/LICENSE",
"publish": "npm publish ./dist/ngx-select-ex",
"publish-dev": "npm publish ./dist/ngx-select-ex --tag dev",
"start": "ng serve",
"test": "ng test --browsers=ChromeHeadlessNoSandbox --watch false",
"test:ngx-select-ex": "ng test ngx-select-ex --browsers=ChromeHeadlessNoSandbox --watch false",
"test:ngx-select-ex-demo": "ng test ngx-select-ex-demo --browsers=ChromeHeadlessNoSandbox --watch false",
"prepare": "husky"
},
"standard-version": {
"scripts": {
"postbump": "npm run build"
}
},
"keywords": [
"ngx-select",
"ngx-select-ex",
"angular",
"angular18",
"angular19",
"select",
"select2",
"ui-select",
"multiselect",
"multi-select"
],
"dependencies": {
"@angular/animations": "^19.0.0",
"@angular/cdk": "^19.0.0",
"@angular/common": "^19.0.0",
"@angular/compiler": "^19.0.0",
"@angular/core": "^19.0.0",
"@angular/forms": "^19.0.0",
"@angular/material": "^19.0.0",
"@angular/platform-browser": "^19.0.0",
"@angular/platform-browser-dynamic": "^19.0.0",
"@angular/router": "^19.0.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.0",
"@angular/cli": "^19.0.0",
"@angular/compiler-cli": "^19.0.0",
"@types/jasmine": "~5.1.0",
"angular-eslint": "18.4.1",
"eslint": "^9.15.0",
"html-loader": "^5.1.0",
"husky": "^9.1.7",
"jasmine-core": "~5.4.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"markdown-loader": "^8.0.0",
"ng-packagr": "^19.0.0",
"raw-loader": "^4.0.2",
"standard-version": "^9.5.0",
"typescript": "~5.6.2",
"typescript-eslint": "8.15.0"
},
"contributors": [
{
"name": "Konstantin Polyntsov",
"email": "optimistex@gmail.com",
"url": "https://github.com/optimistex"
},
{
"name": "Vyacheslav Chub",
"email": "vyacheslav.chub@valor-software.com",
"url": "https://github.com/buchslava"
},
{
"name": "Dmitriy Shekhovtsov",
"email": "valorkin@gmail.com",
"url": "https://github.com/valorkin"
},
{
"name": "Oleksandr Telnov",
"email": "otelnov@gmail.com",
"url": "https://github.com/otelnov"
}
]
}