forked from angular/universal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.18 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
{
"name": "nguniversal",
"main": "index.js",
"version": "5.0.0-beta.5",
"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": ">= 6.9.0",
"npm": ">= 3"
},
"scripts": {
"ngc": "ngc",
"jasmine": "jasmine",
"build:common": "ngc -p modules/common/tsconfig.json",
"build:express-engine": "ngc -p modules/express-engine/tsconfig.json",
"build:aspnetcore-engine": "ngc -p modules/aspnetcore-engine/tsconfig.json",
"build:hapi-engine": "ngc -p modules/hapi-engine/tsconfig.json",
"build:module-map-ngfactory-loader": "ngc -p modules/module-map-ngfactory-loader/tsconfig.json",
"build": "./build.sh",
"test": "exit 0"
},
"devDependencies": {
"@angular/animations": "^5.0.0",
"@angular/common": "^5.0.0",
"@angular/compiler": "^5.0.0",
"@angular/compiler-cli": "^5.0.0",
"@angular/core": "^5.0.0",
"@angular/http": "^5.0.0",
"@angular/platform-browser": "^5.0.0",
"@angular/platform-browser-dynamic": "^5.0.0",
"@angular/platform-server": "^5.0.0",
"@types/express": "^4.0.39",
"@types/hapi": "^16.1.2",
"express": "^4.15.2",
"hapi": "^16.1.1",
"rimraf": "^2.6.1",
"rxjs": "^5.5.2",
"typescript": "2.4.2",
"zone.js": "^0.8.12"
}
}