forked from ng-select/ng-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.72 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
{
"name": "root",
"workspaces": [
"src/*"
],
"private": true,
"repository": "liberty-mp/ng-select",
"engines": {
"node": ">= 12.20.0",
"npm": ">= 6.0.0"
},
"scripts": {
"build": "ng build ng-select && ng build ng-option-highlight && yarn build:theme",
"build:demo": "ng build demo --configuration production --baseHref=/ng-select && yarn copy-examples",
"build:theme": "sass --style=compressed --no-source-map src/ng-select/themes/default.theme.scss dist/ng-select/themes/default.theme.css",
"copy-examples": "cp -r src/demo/app/examples dist/demo",
"start": "ng serve --port 4202",
"lint": "ng lint ng-select && ng lint ng-option-highlight",
"postpublish": "cp dist/ng-select/package.json src/ng-select && cp dist/ng-option-highlight/package.json src/ng-option-highlight",
"release": "semantic-release",
"bump-versions": "lerna version --tag-version-prefix='' --no-push"
},
"dependencies": {
"@angular/animations": "^15.0.2",
"@angular/common": "^15.0.2",
"@angular/compiler": "^15.0.2",
"@angular/core": "^15.0.2",
"@angular/forms": "^15.0.2",
"@angular/localize": "^15.0.2",
"@angular/platform-browser": "^15.0.2",
"@angular/platform-browser-dynamic": "^15.0.2",
"@angular/router": "^15.0.2",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@libertymp/angular-fontawesome": "^0.0.2",
"@ng-bootstrap/ng-bootstrap": "^13.1.1",
"@popperjs/core": "^2.11.5",
"bootstrap": "^5.1.3",
"rxjs": "~6.5.5",
"tslib": "^2.4.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.0.2",
"@angular-eslint/builder": "14.0.0",
"@angular-eslint/eslint-plugin": "14.0.0",
"@angular-eslint/eslint-plugin-template": "14.0.0",
"@angular-eslint/schematics": "^14.0.0",
"@angular-eslint/template-parser": "14.0.0",
"@angular/cli": "^14.0.3",
"@angular/compiler-cli": "^15.0.2",
"@angular/language-service": "^15.0.2",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "^2.0.6",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"coveralls": "^3.0.2",
"eslint": "^8.18.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsdoc": "30.7.6",
"eslint-plugin-prefer-arrow": "^1.2.2",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.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.5.0",
"lerna": "^5.0.0",
"ng-packagr": "^15.0.1",
"sass": "^1.52.1",
"ts-node": "~8.3.0",
"typescript": "~4.8.4"
}
}