forked from optimistex/ngx-select-ex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 3.59 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
{
"name": "ngx-select-ex",
"version": "3.5.9",
"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.ng5": "npm publish dist",
"publish.ng5-dev": "npm publish dist --tag dev",
"start": "ng serve -op runtime",
"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",
"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/animations": "^5.2.0",
"@angular/cli": "1.6.7",
"@angular/common": "^5.2.0",
"@angular/compiler": "^5.2.0",
"@angular/compiler-cli": "^5.2.0",
"@angular/core": "^5.2.0",
"@angular/forms": "^5.2.0",
"@angular/http": "^5.2.0",
"@angular/language-service": "^5.2.0",
"@angular/platform-browser": "^5.2.0",
"@angular/platform-browser-dynamic": "^5.2.0",
"@angular/router": "^5.2.0",
"@types/jasmine": "~2.8.3",
"@types/jasminewd2": "~2.0.2",
"@types/marked": "^0.3.0",
"@types/node": "~6.0.60",
"@types/webpack": "^3.8.4",
"codecov": "^3.0.0",
"codelyzer": "^4.0.1",
"commitizen": "^2.9.6",
"core-js": "^2.4.1",
"cz-conventional-changelog": "^2.1.0",
"escape-string-regexp": "^1.0.5",
"html-loader": "^0.5.5",
"husky": "^0.14.3",
"jasmine-core": "~2.8.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~2.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "^1.2.1",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"lodash": "^4.17.4",
"markdown-loader": "^2.0.2",
"ng-packagr": "^2.0.0",
"ngx-bootstrap": "^2.0.2",
"pre-commit": "^1.2.2",
"protractor": "~5.1.2",
"rxjs": "^5.5.6",
"standard-version": "^4.3.0",
"ts-node": "~4.1.0",
"tslint": "~5.9.1",
"typescript": "~2.5.3",
"zone.js": "^0.8.19"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"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"
}
]
}