This repository has been archived by the owner on May 23, 2024. It is now read-only.
forked from angular/universal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
132 lines (132 loc) · 3.68 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "nguniversal",
"main": "index.js",
"version": "7.0.2",
"description": "Universal (isomorphic) JavaScript support for Angular",
"homepage": "https://github.com/angular/universal",
"license": "MIT",
"contributors": [
"gdi2290",
"manekinekko",
"jeffwhelpley",
"MarkPieszak",
"ashsidhu",
"jeffbcross",
"wesleycho",
"dbabaioff",
"tamascsaba",
"alexpods",
"laskoviymishka",
"JohnGorter",
"valorkin",
"playground",
"swirlycheetah",
"datwheat",
"btrigueiro",
"Krijger",
"vangorden",
"alfamegaxq",
"QuinntyneBrown",
"vvakame",
"gitter-badger",
"juristr",
"filipesilva",
"lightningtgc",
"justindujardin",
"wellingWilliam",
"adams",
"alxhub",
"naomiblack",
"NathanWalker",
"basarat",
"visikov",
"tbosch",
"bnjjj"
],
"repository": {
"type": "git",
"url": "https://github.com/angular/universal"
},
"bugs": {
"url": "https://github.com/angular/universal/issues"
},
"config": {
"engine-strict": true
},
"engines": {
"node": ">= 8.9.x"
},
"scripts": {
"lint": "tslint -c tslint.json '+(modules|tools)/**/*.ts' --exclude '**/node_modules/**/*'",
"build": "ts-node --project ./tools/tsconfig.json build.ts",
"upver": "standard-version",
"upver:beta": "standard-version --prerelease beta",
"upver:rc": "standard-version --prerelease rc",
"upver:push": "standard-version",
"postinstall": "ngc -p angular.tsconfig.json",
"prebuildifier": "bazel build --noshow_progress @com_github_bazelbuild_buildtools//buildifier",
"buildifier": "find . -type f \\( -name BUILD -or -name BUILD.bazel \\) ! -path \"*/node_modules/*\" | xargs $(bazel info bazel-bin)/external/com_github_bazelbuild_buildtools/buildifier/*/buildifier",
"bazel:build": "bazel build //...",
"test": "bazel test //...",
"build:watch": "ibazel build //...",
"test:watch": "ibazel test //..."
},
"devDependencies": {
"@angular-devkit/core": "^0.7.5",
"@angular-devkit/schematics": "^0.7.5",
"@angular/animations": "6.0.4",
"@angular/bazel": "6.0.4",
"@angular/common": "6.0.4",
"@angular/compiler": "6.0.4",
"@angular/compiler-cli": "6.0.4",
"@angular/core": "6.0.4",
"@angular/http": "6.0.4",
"@angular/platform-browser": "6.0.4",
"@angular/platform-browser-dynamic": "6.0.4",
"@angular/platform-server": "6.0.4",
"@angular/router": "6.0.4",
"@angular/upgrade": "6.0.4",
"@bazel/ibazel": "^0.3.1",
"@schematics/angular": "^0.7.5",
"@types/express": "^4.0.39",
"@types/fs-extra": "^4.0.5",
"@types/hapi": "^17.0.12",
"@types/jasmine": "^2.8.6",
"@types/node": "^9.4.6",
"camelcase": "^4.1.0",
"express": "^4.15.2",
"fs-extra": "^3.0.1",
"glob": "^7.1.2",
"hapi": "^17.5.1",
"jasmine-core": "^2.8.0",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-typescript": "^3.0.12",
"minimatch": "^3.0.4",
"protractor": "^5.2.0",
"replace-in-file": "^3.1.1",
"rimraf": "^2.6.1",
"rollup": "^0.56.5",
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^2.0.1",
"rxjs": "^6.2.0",
"sorcery": "^0.10.0",
"standard-version": "^4.3.0",
"systemjs": "0.19.43",
"ts-node": "^3.0.4",
"tsconfig-paths": "^2.3.0",
"tslint": "^5.9.1",
"tsutils": "^2.21.2",
"typescript": "~2.7.2",
"uglify-js": "^2.8.14",
"zone.js": "^0.8.26"
},
"dependencies": {
"yarn": "^1.10.1"
}
}