|
5 | 5 | "description": "Universal (isomorphic) JavaScript support for Angular", |
6 | 6 | "homepage": "https://github.com/angular/universal", |
7 | 7 | "license": "MIT", |
8 | | - "contributors": [ |
9 | | - "gdi2290", |
10 | | - "manekinekko", |
11 | | - "jeffwhelpley", |
12 | | - "MarkPieszak", |
13 | | - "ashsidhu", |
14 | | - "jeffbcross", |
15 | | - "wesleycho", |
16 | | - "dbabaioff", |
17 | | - "tamascsaba", |
18 | | - "alexpods", |
19 | | - "laskoviymishka", |
20 | | - "JohnGorter", |
21 | | - "valorkin", |
22 | | - "playground", |
23 | | - "swirlycheetah", |
24 | | - "datwheat", |
25 | | - "btrigueiro", |
26 | | - "Krijger", |
27 | | - "vangorden", |
28 | | - "alfamegaxq", |
29 | | - "QuinntyneBrown", |
30 | | - "vvakame", |
31 | | - "gitter-badger", |
32 | | - "juristr", |
33 | | - "filipesilva", |
34 | | - "lightningtgc", |
35 | | - "justindujardin", |
36 | | - "wellingWilliam", |
37 | | - "adams", |
38 | | - "alxhub", |
39 | | - "naomiblack", |
40 | | - "NathanWalker", |
41 | | - "basarat", |
42 | | - "visikov", |
43 | | - "tbosch", |
44 | | - "bnjjj" |
45 | | - ], |
46 | 8 | "repository": { |
47 | 9 | "type": "git", |
48 | 10 | "url": "https://github.com/angular/universal" |
|
59 | 21 | "scripts": { |
60 | 22 | "postinstall": "ngc -p ./angular-metadata.tsconfig.json", |
61 | 23 | "lint": "tslint -c tslint.json '+(modules|tools)/**/*.ts' --exclude '**/node_modules/**/*'", |
62 | | - "build": "ts-node --project ./tools/tsconfig.json build.ts", |
63 | | - "upver": "standard-version", |
64 | | - "upver:beta": "standard-version --prerelease beta", |
65 | | - "upver:rc": "standard-version --prerelease rc", |
66 | | - "upver:push": "standard-version", |
| 24 | + "build": "npm run bazel:build", |
67 | 25 | "prebuildifier": "bazel build --noshow_progress @com_github_bazelbuild_buildtools//buildifier", |
68 | 26 | "bazel:format": "find . -type f \\( -name \"*.bzl\" -or -name BUILD -or -name BUILD.bazel -or -name WORKSPACE \\) ! -path \"*/node_modules/*\" | xargs buildifier -v", |
69 | 27 | "bazel:lint": "yarn bazel:format --lint=warn", |
70 | 28 | "bazel:lint-fix": "yarn bazel:format --lint=fix", |
71 | | - "bazel:build": "bazel build //...", |
| 29 | + "bazel:build": "bazel build //modules/...", |
72 | 30 | "test": "bazel test //modules/...", |
73 | | - "build:watch": "ibazel build //...", |
| 31 | + "build:watch": "ibazel build //modules/...", |
74 | 32 | "test:watch": "ibazel test //modules/...", |
75 | 33 | "preinstall": "node ./tools/npm/check-npm.js", |
76 | 34 | "bazel": "bazel" |
77 | 35 | }, |
78 | 36 | "dependencies": { |
79 | | - "@angular/animations": "^9.0.0-next.5", |
80 | | - "@angular/common": "^9.0.0-next.5", |
81 | | - "@angular/compiler": "^9.0.0-next.5", |
82 | | - "@angular/compiler-cli": "^9.0.0-next.5", |
83 | | - "@angular/core": "^9.0.0-next.5", |
84 | | - "@angular/platform-browser": "^9.0.0-next.5", |
85 | | - "@angular/platform-browser-dynamic": "^9.0.0-next.5", |
86 | | - "@angular/platform-server": "^9.0.0-next.5", |
87 | | - "rxjs": "^6.4.0", |
| 37 | + "@angular/animations": "9.0.0-next.5", |
| 38 | + "@angular/common": "9.0.0-next.5", |
| 39 | + "@angular/compiler": "9.0.0-next.5", |
| 40 | + "@angular/compiler-cli": "9.0.0-next.5", |
| 41 | + "@angular/core": "9.0.0-next.5", |
| 42 | + "@angular/platform-browser": "9.0.0-next.5", |
| 43 | + "@angular/platform-browser-dynamic": "9.0.0-next.5", |
| 44 | + "@angular/platform-server": "9.0.0-next.5", |
| 45 | + "rxjs": "^6.5.3", |
88 | 46 | "typescript": "~3.5.3" |
89 | 47 | }, |
90 | 48 | "devDependencies": { |
91 | | - "@angular/bazel": "^9.0.0-next.5", |
| 49 | + "@angular/bazel": "9.0.0-next.5", |
92 | 50 | "@bazel/bazel": "0.28.1", |
93 | 51 | "@bazel/buildifier": "^0.25.1", |
94 | 52 | "@bazel/hide-bazel-files": "^0.32.2", |
95 | 53 | "@bazel/ibazel": "^0.10.3", |
96 | 54 | "@bazel/jasmine": "^0.32.2", |
97 | 55 | "@bazel/karma": "^0.32.2", |
98 | 56 | "@bazel/typescript": "^0.32.2", |
99 | | - "@schematics/angular": "^9.0.0-next.3", |
| 57 | + "@schematics/angular": "^9.0.0-next.5", |
100 | 58 | "@types/express": "^4.0.39", |
101 | 59 | "@types/fs-extra": "^4.0.5", |
102 | 60 | "@types/hapi": "^17.0.12", |
103 | 61 | "@types/inert": "^5.1.2", |
104 | 62 | "@types/jasmine": "^2.8.6", |
105 | 63 | "@types/node": "^9.4.6", |
106 | | - "camelcase": "^4.1.0", |
107 | 64 | "domino": "^2.1.2", |
108 | 65 | "express": "^4.15.2", |
109 | | - "fs-extra": "^3.0.1", |
110 | | - "glob": "^7.1.2", |
111 | 66 | "hapi": "^17.5.1", |
112 | 67 | "jasmine-core": "^2.8.0", |
113 | 68 | "karma": "^4.1.0", |
|
117 | 72 | "karma-typescript": "^4.1.0", |
118 | 73 | "minimatch": "^3.0.4", |
119 | 74 | "protractor": "5.4.2", |
120 | | - "replace-in-file": "^3.1.1", |
121 | | - "rimraf": "^2.6.1", |
122 | | - "rollup": "^0.56.5", |
123 | | - "rollup-plugin-alias": "^1.4.0", |
124 | | - "rollup-plugin-commonjs": "^8.2.6", |
125 | | - "rollup-plugin-node-resolve": "^3.0.2", |
126 | | - "rollup-plugin-sourcemaps": "^0.4.2", |
127 | | - "rollup-plugin-uglify": "^2.0.1", |
128 | | - "sorcery": "^0.10.0", |
129 | 75 | "source-map-support": "^0.5.9", |
130 | | - "standard-version": "^4.3.0", |
131 | | - "systemjs": "0.19.43", |
132 | | - "ts-node": "^3.0.4", |
133 | | - "tsconfig-paths": "^2.3.0", |
134 | 76 | "tslib": "1.9.3", |
135 | 77 | "tslint": "^5.18.0", |
| 78 | + "ts-node": "8.4.1", |
136 | 79 | "tsutils": "^2.21.2", |
137 | | - "uglify-js": "^2.8.14", |
138 | 80 | "xhr2": "^0.1.4", |
139 | | - "yarn": "^1.10.1", |
140 | 81 | "zone.js": "^0.10.2" |
141 | 82 | } |
142 | 83 | } |
0 commit comments