This repository has been archived by the owner on Sep 17, 2024. It is now read-only.
forked from ng-select/ng-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.92 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
{
"repository": "ng-select/ng-select",
"engines": {
"node": ">= 12.14.0",
"npm": ">= 6.0.0"
},
"scripts": {
"build": "ng build ng-select && ng build ng-option-highlight && yarn build:themes && yarn copy-sass",
"build:demo": "ng build demo --prod --baseHref=/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",
"publish": "cd dist/ng-select && npm publish && cd ../..",
"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": "~12.0.0",
"@angular/common": "~12.0.0",
"@angular/compiler": "~12.0.0",
"@angular/core": "~12.0.0",
"@angular/forms": "~12.0.0",
"@angular/localize": "^12.0.0",
"@angular/platform-browser": "~12.0.0",
"@angular/platform-browser-dynamic": "~12.0.0",
"@angular/router": "~12.0.0",
"@ng-bootstrap/ng-bootstrap": "^9.0.2",
"bootstrap": "^4.5.0",
"rxjs": "~6.5.5",
"tslib": "^2.2.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~12.0.0",
"@angular/cli": "~12.0.0",
"@angular/compiler-cli": "~12.0.0",
"@angular/language-service": "~12.0.0",
"@semantic-release/changelog": "^3.0.4",
"@stackblitz/sdk": "^1.3.0",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "^2.0.6",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.0",
"coveralls": "^3.0.2",
"gh-pages-travis": "^1.0.4",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.2",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "^12.0.0",
"node-sass": "^4.12.0",
"semantic-release": "^17.2.3",
"standard-version": "^8.0.1",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~4.2.4"
}
}