forked from angular/universal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 1.98 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
{
"name": "angular2-universal",
"main": "index.js",
"version": "2.0.11",
"description": "Universal (isomorphic) javascript support for Angular2+",
"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": ">= 5.4.1 <= 8",
"npm": ">= 3"
},
"scripts": {
"ngc": "ngc",
"jasmine": "jasmine",
"build:ng-express-engine": "ngc -p modules/ng-express-engine/tsconfig.json",
"build:ng-aspnetcore-engine": "ngc -p modules/ng-aspnetcore-engine/tsconfig.json",
"build:ng-module-map-ngfactory-loader": "ngc -p modules/ng-module-map-ngfactory-loader/tsconfig.json",
"build": "./build.sh",
"test": "exit 0"
},
"devDependencies": {
"@angular/animations": "^4.0.0",
"@angular/common": "^4.0.0",
"@angular/compiler": "^4.0.0",
"@angular/compiler-cli": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/http": "^4.0.0",
"@angular/platform-browser": "^4.0.0",
"@angular/platform-server": "^4.0.0",
"@types/express": "^4.0.35",
"express": "^4.15.2",
"rimraf": "^2.6.1",
"rxjs": "^5.2.0",
"typescript": "^2.2.1",
"zone.js": "^0.8.4"
}
}