forked from ng-select/ng-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.31 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
{
"repository": "ng-select/ng-select",
"engines": {
"node": ">= 16.20.0",
"npm": ">= 8.19.4"
},
"scripts": {
"build": "ng build ng-select && ng build ng-option-highlight && yarn build:themes && yarn copy-sass",
"build:demo": "ng build demo --configuration production --base-href=/ng-select && yarn copy-examples",
"build:themes": "node-sass --output-style compressed src/ng-select/themes/ -o dist/ng-select/themes",
"copy-sass": "mkdir -p dist/ng-select/scss && cp src/ng-select/**/*.scss dist/ng-select/scss",
"copy-examples": "cp -r src/demo/app/examples dist/demo",
"start": "ng serve",
"test:watch": "ng test ng-select --watch",
"test": "ng test ng-select --code-coverage && ng test ng-option-highlight --code-coverage",
"test:ci": "ng test --watch=false --browsers=ChromeHeadless --code-coverage",
"coveralls": "cat ./coverage/ng-select/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"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"
},
"release": {
"branch": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/changelog",
"@semantic-release/github",
[
"@semantic-release/npm",
{
"pkgRoot": "dist/ng-select"
}
],
"@semantic-release/release-notes-generator"
]
},
"dependencies": {
"@angular/animations": "^16.0.0",
"@angular/common": "^16.0.0",
"@angular/compiler": "^16.0.0",
"@angular/core": "^16.0.0",
"@angular/forms": "^16.0.0",
"@angular/localize": "^16.0.0",
"@angular/platform-browser": "^16.0.0",
"@angular/platform-browser-dynamic": "^16.0.0",
"@angular/router": "^16.0.0",
"@ng-bootstrap/ng-bootstrap": "^13.1.0",
"@popperjs/core": "^2.11.6",
"bootstrap": "^5.2.0",
"rxjs": "^7.5.7",
"tslib": "^2.3.1",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.0.0",
"@angular-eslint/builder": "14.1.2",
"@angular-eslint/eslint-plugin": "14.1.2",
"@angular-eslint/eslint-plugin-template": "14.1.2",
"@angular-eslint/schematics": "^14.1.2",
"@angular-eslint/template-parser": "14.1.2",
"@angular/cli": "^16.0.0",
"@angular/compiler-cli": "^16.0.0",
"@angular/language-service": "^16.0.0",
"@semantic-release/changelog": "^6.0.1",
"@stackblitz/sdk": "^1.6.0",
"@types/jasmine": "~4.0.3",
"@types/jasminewd2": "^2.0.10",
"@types/node": "^20.1.7",
"@typescript-eslint/eslint-plugin": "5.26.0",
"@typescript-eslint/parser": "5.26.0",
"coveralls": "^3.1.1",
"eslint": "8.16.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "39.3.2",
"eslint-plugin-prefer-arrow": "^1.2.2",
"gh-pages-travis": "^1.0.4",
"jasmine-core": "~4.1.1",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.3.20",
"karma-chrome-launcher": "~3.1.1",
"karma-coverage": "^2.2.0",
"karma-jasmine": "~5.0.1",
"karma-jasmine-html-reporter": "^2.0.0",
"ng-packagr": "^16.0.0",
"node-sass": "^7.0.1",
"semantic-release": "^19.0.2",
"standard-version": "^9.5.0",
"ts-node": "~10.8.0",
"typescript": "~5.0.4"
}
}