This repository has been archived by the owner on Oct 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
92 lines (92 loc) · 3.67 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
{
"name": "angular-mdc",
"description": "Angular MDC",
"homepage": "https://github.com/trimox/angular-mdc-web",
"bugs": "https://github.com/trimox/angular-mdc-web/issues",
"repository": {
"type": "git",
"url": "https://github.com/trimox/angular-mdc-web.git"
},
"license": "MIT",
"version": "6.0.0-canary.9",
"engines": {
"node": ">= 12.0.0",
"yarn": ">= 1.19.1"
},
"scripts": {
"postinstall": "node tools/postinstall/apply-patches.js && ngcc --properties main --create-ivy-entry-points && node tools/postinstall/update-ngcc-main-fields.js",
"build": "node ./scripts/build-packages-dist.js",
"bazel:buildifier": "find . -type f \\( -name \"*.bzl\" -or -name WORKSPACE -or -name BUILD -or -name BUILD.bazel \\) ! -path \"*/node_modules/*\" | xargs buildifier -v --warnings=attr-cfg,attr-license,attr-non-empty,attr-output-default,attr-single-file,constant-glob,ctx-args,depset-iteration,depset-union,dict-concatenation,duplicated-name,filetype,git-repository,http-archive,integer-division,load,load-on-top,native-build,native-package,output-group,package-name,package-on-top,redefined-variable,repository-name,same-origin-load,string-iteration,unused-variable,unsorted-dict-items,out-of-order-load",
"bazel:format-lint": "yarn -s bazel:buildifier --lint=warn --mode=check",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"demo-app": "node ./scripts/run-demo-app.js",
"lint": "yarn -s tslint && yarn -s bazel:format-lint",
"tslint": "tslint -c tslint.json --project ./tsconfig.json",
"lint:css": "stylelint \"packages/material-components-web/**/*.scss\"",
"fix:css": "stylelint --fix \"packages/material-components-web/**/*.scss\"",
"preinstall": "node ./tools/npm/check-npm.js",
"format:bazel": "yarn -s bazel:buildifier --lint=fix --mode=fix",
"test": "node ./scripts/run-unit-tests.js",
"test-local": "yarn -s test --local",
"test-firefox": "yarn -s test --firefox"
},
"dependencies": {
"@angular/animations": "^9.1.2",
"@angular/cdk": "^9.2.1",
"@angular/common": "^9.1.2",
"@angular/compiler": "^9.1.2",
"@angular/core": "^9.1.2",
"@angular/elements": "^9.1.2",
"@angular/forms": "^9.1.2",
"@angular/platform-browser": "^9.1.2",
"core-js": "^2.6.9",
"material-components-web": "6.0.0",
"rxjs": "^6.5.5",
"tsickle": "0.38.1",
"tslib": "1.11.1",
"zone.js": "^0.10.3"
},
"devDependencies": {
"@angular/bazel": "^9.1.2",
"@angular/compiler-cli": "^9.1.2",
"@angular/platform-browser-dynamic": "^9.1.2",
"@angular/router": "^9.1.2",
"@bazel/bazelisk": "^1.4.0",
"@bazel/buildifier": "^2.2.1",
"@bazel/ibazel": "^0.13.0",
"@bazel/jasmine": "~1.6.1",
"@bazel/karma": "~1.6.1",
"@bazel/typescript": "~1.6.1",
"@types/fs-extra": "^8.1.0",
"@types/jasmine": "^3.5.9",
"@types/minimatch": "^3.0.3",
"@types/node": "^13.11.1",
"chalk": "^4.0.0",
"codelyzer": "^5.1.0",
"jasmine-core": "^3.4.0",
"karma": "^5.0.1",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-jasmine": "^3.1.1",
"karma-requirejs": "^1.1.0",
"karma-sourcemap-loader": "^0.3.7",
"minimatch": "^3.0.4",
"requirejs": "^2.3.6",
"rollup": "^2.6.1",
"rollup-plugin-alias": "^2.2.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.5.0",
"stylelint": "^13.3.2",
"stylelint-scss": "^3.16.1",
"terser": "^4.6.11",
"ts-loader": "^7.0.0",
"ts-node": "^8.7.0",
"tslint": "^6.1.1",
"typescript": "~3.8.3"
},
"resolutions": {
"**/graceful-fs": "4.2.3"
},
"private": true
}