forked from optimistex/ngx-select-ex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.51 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
{
"name": "ngx-select-ex",
"version": "3.6.9-dev",
"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 && npm run build.package && npm run build.demo && git add -A",
"build.demo": "ng build --prod",
"build.package": "ng-packagr -p ng-package.json",
"lint": "ng lint",
"ng": "ng",
"precommit": "npm run test",
"release": "standard-version --commit-all",
"publish.ng4": "npm publish dist --tag ng4",
"publish.ng6": "npm publish dist",
"publish.ng6-dev": "npm publish dist --tag dev",
"start": "ng serve",
"test": "ng test --watch false",
"test-coverage": "ng test --watch false --code-coverage"
},
"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": {
"@angular/core": ">5.0.0",
"@angular/common": ">5.0.0",
"@angular/platform-browser": ">5.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.8.6",
"@angular/animations": "^6.1.10",
"@angular/cli": "^6.2.6",
"@angular/common": "^6.1.10",
"@angular/compiler": "^6.1.10",
"@angular/compiler-cli": "^6.1.10",
"@angular/core": "^6.1.10",
"@angular/forms": "^6.1.10",
"@angular/http": "^6.1.10",
"@angular/language-service": "^6.1.10",
"@angular/platform-browser": "^6.1.10",
"@angular/platform-browser-dynamic": "^6.1.10",
"@angular/router": "^6.1.10",
"@types/jasmine": "^2.8.9",
"@types/jasminewd2": "^2.0.5",
"@types/marked": "^0.3.0",
"@types/node": "~8.9.4",
"@types/webpack": "^3.8.17",
"codecov": "^3.0.0",
"codelyzer": "~4.3.0",
"core-js": "^2.5.4",
"escape-string-regexp": "^1.0.5",
"html-loader": "^0.5.5",
"husky": "^0.14.3",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~3.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"lodash": "^4.17.11",
"markdown-loader": "^2.0.2",
"ng-packagr": "^4.4.0",
"ngx-bootstrap": "^3.1.1",
"pre-commit": "^1.2.2",
"protractor": "~5.4.0",
"rxjs": "^6.3.3",
"standard-version": "^4.3.0",
"ts-node": "~7.0.0",
"tslint": "~5.11.0",
"typescript": "~2.9.2",
"zone.js": "~0.8.26"
},
"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"
}
]
}