forked from optimistex/ngx-select-ex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
134 lines (134 loc) · 4.02 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "ngx-select-ex",
"version": "8.0.1",
"description": "Angular based replacement for select boxes",
"license": "MIT",
"private": false,
"author": "Konstantin Polyntsov <[email protected]>",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]: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": {
"e2e": "ng e2e",
"cz": "git add -A && git status && git-cz",
"build": "npm run lint && npm run test:headless && npm run build.package && npm run build.demo && git add -A",
"build.demo": "ng build --configuration production",
"build.package": "ng-packagr -p ng-package.json",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"ng": "ng",
"release": "standard-version --commit-all",
"release:major": "standard-version --release-as major --commit-all",
"publish.ng4": "npm publish ./dist --tag ng4",
"publish": "npm publish ./dist",
"publish-dev": "npm publish ./dist --tag dev",
"start": "ng serve",
"test": "ng test --watch false",
"test:headless": "ng test --browsers=ChromeHeadlessNoSandbox --watch=false --code-coverage",
"test-coverage": "ng test --watch false --code-coverage",
"prepare": "husky install"
},
"standard-version": {
"scripts": {
"postbump": "npm run build"
}
},
"keywords": [
"ngx-select",
"ngx-select-ex",
"angular",
"angular2",
"angular4",
"angular5",
"angular6",
"select",
"select2",
"ui-select",
"multiselect",
"multi-select"
],
"peerDependencies": {
"lodash.isequal": "^4.5.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.1.4",
"@angular-eslint/builder": "13.0.1",
"@angular-eslint/eslint-plugin": "13.0.1",
"@angular-eslint/eslint-plugin-template": "13.0.1",
"@angular-eslint/schematics": "13.0.1",
"@angular-eslint/template-parser": "13.0.1",
"@angular/animations": "~13.1.3",
"@angular/cli": "^13.1.4",
"@angular/common": "~13.1.3",
"@angular/compiler": "~13.1.3",
"@angular/compiler-cli": "~13.1.3",
"@angular/core": "~13.1.3",
"@angular/forms": "~13.1.3",
"@angular/language-service": "~13.1.3",
"@angular/platform-browser": "~13.1.3",
"@angular/platform-browser-dynamic": "~13.1.3",
"@angular/router": "~13.1.3",
"@types/jasmine": "^3.7.2",
"@types/jasminewd2": "^2.0.8",
"@types/marked": "^4.0.1",
"@types/node": "^17.0.10",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"codecov": "^3.8.1",
"codelyzer": "^6.0.0",
"escape-string-regexp": "^5.0.0",
"eslint": "^8.2.0",
"html-loader": "^3.0.1",
"husky": "^7.0.4",
"jasmine-core": "^4.0.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.3.2",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "^2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.6.0",
"lodash.isequal": "^4.5.0",
"markdown-loader": "^6.0.0",
"ng-packagr": "^13.1.3",
"ngx-bootstrap": "^8.0.0",
"pre-commit": "^1.2.2",
"protractor": "~7.0.0",
"raw-loader": "^4.0.2",
"rxjs": "^7.5.2",
"standard-version": "^9.0.0",
"ts-node": "^10.4.0",
"tslib": "^2.0.0",
"tslint": "~6.1.0",
"tslint-jasmine-rules": "^1.6.1",
"typescript": "~4.5.4",
"zone.js": "~0.11.4"
},
"contributors": [
{
"name": "Konstantin Polyntsov",
"email": "[email protected]",
"url": "https://github.com/optimistex"
},
{
"name": "Vyacheslav Chub",
"email": "[email protected]",
"url": "https://github.com/buchslava"
},
{
"name": "Dmitriy Shekhovtsov",
"email": "[email protected]",
"url": "https://github.com/valorkin"
},
{
"name": "Oleksandr Telnov",
"email": "[email protected]",
"url": "https://github.com/otelnov"
}
]
}