forked from porscheinformatik/clarity-addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 4.65 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
{
"name": "clr-addons",
"version": "10.3.0",
"private": true,
"scripts": {
"build:ui:css": "sass --source-map --precision=8 ./src/clr-addons/themes/phs/phs-theme.scss ./dist/clr-addons/styles/clr-addons-phs.css",
"build:ui:prefix": "postcss ./dist/clr-addons/styles/clr-addons-phs.css -o ./dist/clr-addons/styles/clr-addons-phs.css",
"build:ui:src": "cpy --parents --cwd=src/clr-addons **/*.scss ../../dist/clr-addons/src/",
"build:ui:optimize": "csso -i ./dist/clr-addons/styles/clr-addons-phs.css -o ./dist/clr-addons/styles/clr-addons-phs.min.css -s file",
"build:ui": "npm-run-all build:ui:css build:ui:prefix build:ui:src build:ui:optimize",
"build:angular:package": "cpy ./npm/clr-addons/package.json ./npm/clr-addons/README.md ./src/clr-addons/ && cross-var replace @VERSION $npm_package_version ./src/clr-addons/package.json && cross-var replace @CLARITY_VERSION $npm_package_dependencies__clr_angular ./src/clr-addons/package.json",
"build:angular:ngpackagr": "ng build clr-addons --prod",
"build:angular": "npm-run-all build:angular:package build:angular:ngpackagr",
"build": "npm-run-all clean build:ui build:angular",
"clean": "shx rm -rf dist",
"start": "npm-run-all build:ui:css build:ui:prefix serve:dev",
"start:port": "npm-run-all build:ui:css build:ui:prefix serve:dev:port",
"serve:dev": "ng serve dev",
"serve:dev:port": "ng serve dev --port 4300 --host=0.0.0.0",
"test:format": "prettier --check \"./**/*.{js,json,md,ts,scss}\"",
"format:fix": "pretty-quick --staged",
"format:global:fix": "prettier -w \"./**/*.{js,json,md,ts,scss}\"",
"lint": "npm-run-all test:lint:ts test:lint:styles",
"test:lint:ts": "eslint \"src/clr-addons/**/*.ts\" \"src/dev/**/*.ts\"",
"lint:fix": "eslint --fix \"src/clr-addons/**/*.ts\" \"src/dev/**/*.ts\"",
"test:lint:styles": "stylelint \"src/**/*.scss\" \"src/**/*.css\"",
"lint:styles:fix": "stylelint --fix \"src/**/*.scss\" \"src/**/*.css\"",
"test": "ng test clr-addons --watch false",
"test:watch": "ng test clr-addons --watch",
"test:travis": "npm-run-all test:format lint test build",
"license:fix": "node scripts/update-license",
"publish": "npm publish dist/clr-addons --access public",
"postinstall": "ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points",
"prepare": "husky install"
},
"dependencies": {
"@angular/animations": "11.2.14",
"@angular/common": "11.2.14",
"@angular/compiler": "11.2.14",
"@angular/core": "11.2.14",
"@angular/forms": "11.2.14",
"@angular/platform-browser": "11.2.14",
"@angular/platform-browser-dynamic": "11.2.14",
"@angular/router": "11.2.14",
"@cds/core": "5.2.0",
"@clr/angular": "5.2.0",
"@clr/icons": "5.2.0",
"@clr/ui": "5.2.0",
"@webcomponents/custom-elements": "1.5.0",
"@webcomponents/webcomponentsjs": "2.6.0",
"core-js": "3.16.1",
"rxjs": "6.6.7",
"tslib": "2.3.0",
"web-animations-js": "2.3.2",
"zone.js": "0.11.4"
},
"devDependencies": {
"@alasdair/karma-scss-preprocessor": "5.0.0-3",
"@angular-devkit/build-angular": "0.1102.14",
"@angular-devkit/core": "11.2.14",
"@angular-eslint/builder": "12.3.1",
"@angular/cli": "11.2.14",
"@angular/compiler-cli": "11.2.14",
"@types/jasmine": "3.8.2",
"@types/jasmine-matchers": "0.2.32",
"@types/jasminewd2": "2.0.10",
"@types/node": "14.17.9",
"@typescript-eslint/eslint-plugin": "4.29.1",
"@typescript-eslint/parser": "4.29.1",
"autoprefixer": "10.3.1",
"cpy-cli": "3.1.1",
"cross-var": "1.1.0",
"csso-cli": "3.0.0",
"del-cli": "4.0.1",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jasmine": "4.1.2",
"husky": "7.0.1",
"jasmine-core": "3.8.0",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.3.4",
"karma-chrome-launcher": "3.1.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-htmlfile-reporter": "0.3.8",
"karma-jasmine": "4.0.1",
"karma-jasmine-html-reporter": "1.7.0",
"karma-jasmine-matchers": "4.0.2",
"karma-mocha-reporter": "2.2.5",
"karma-notify-reporter": "1.3.0",
"lite-server": "2.6.1",
"ng-packagr": "11.2.4",
"npm-run-all": "4.1.5",
"postcss": "8.3.6",
"postcss-cli": "8.3.1",
"prettier": "2.3.2",
"pretty-quick": "3.1.1",
"replace": "1.2.1",
"sass": "1.37.5",
"shx": "0.3.3",
"stylelint": "13.13.1",
"stylelint-config-recommended": "5.0.0",
"stylelint-scss": "3.20.1",
"typescript": "4.1.3"
},
"engines": {
"node": ">=10.13.0 <15.0.0",
"npm": ">=5.0.0"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
}
}