This repository was archived by the owner on May 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·118 lines (118 loc) · 3.37 KB
/
package.json
File metadata and controls
executable file
·118 lines (118 loc) · 3.37 KB
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
{
"name": "@hapiness/ng-universal",
"version": "8.1.0",
"description": "This is a Hapiness Engine for running Angular Apps on the server for server side rendering.",
"main": "index.js",
"types": "index.d.ts",
"private": false,
"scripts": {
"test": "make test",
"pretest": "make clean && make pretest",
"coveralls": "make coveralls",
"packaging": "make packaging",
"prebuild": "make clean && make pretest && make test",
"build": "make tsc && make ngc-tokens",
"postbuild": "make packaging"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/hapinessjs/ng-universal-module.git"
},
"keywords": [
"Angular",
"Universal",
"Server",
"Rendering",
"Hapiness",
"Framework",
"NodeJS",
"Node",
"HTTP",
"API",
"REST",
"Streams",
"Async",
"Decorator",
"RxJS",
"Rx",
"ReactiveX",
"Observable",
"Observer",
"Module",
"ES2015",
"ES2016",
"ES2017",
"ES6",
"ES7",
"ES8",
"Typescript"
],
"contributors": [
{
"name": "Julien Fauville",
"url": "https://github.com/Juneil"
},
{
"name": "Sébastien Ritz",
"url": "https://github.com/reptilbud"
},
{
"name": "Nicolas Jessel",
"url": "https://github.com/njl07"
},
{
"name": "Mathieu Jeanmougin",
"url": "https://github.com/sopretty"
}
],
"license": "SEE LICENSE IN https://github.com/hapinessjs/ng-universal-module/blob/master/LICENSE.md",
"bugs": {
"url": "https://github.com/hapinessjs/ng-universal-module/issues"
},
"homepage": "https://github.com/hapinessjs/ng-universal-module#readme",
"dependencies": {
"@hapi/mimos": "^4.1.0",
"cookie": "^0.4.0"
},
"devDependencies": {
"@angular/animations": "^8.1.0",
"@angular/common": "^8.1.0",
"@angular/compiler": "^8.1.0",
"@angular/compiler-cli": "^8.1.0",
"@angular/core": "^8.1.0",
"@angular/http": "^8.0.0-beta.10",
"@angular/platform-browser": "^8.1.0",
"@angular/platform-browser-dynamic": "^8.1.0",
"@angular/platform-server": "^8.1.0",
"@hapiness/core": "^2.0.0-alpha",
"@nguniversal/module-map-ngfactory-loader": "^8.1.0",
"@types/fs-extra": "^8.0.0",
"@types/jest": "^24.0.15",
"@types/node": "^12.0.12",
"coveralls": "^3.0.4",
"fs-extra": "^8.1.0",
"jest": "^24.8.0",
"rimraf": "^2.6.3",
"rxjs": "^6.5.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "~3.4.5",
"zone.js": "^0.9.1"
},
"peerDependencies": {
"@angular/compiler": "^8.1.0",
"@angular/core": "^8.1.0",
"@angular/platform-server": "^8.1.0",
"@hapiness/core": "^2.0.0-alpha",
"@hapiness/ng-universal-transfer-http": "^10.1.0",
"@nguniversal/module-map-ngfactory-loader": "^8.1.0",
"rxjs": "^6.5.2",
"ts-loader": "^6.0.4",
"webpack": "^4.35.2",
"webpack-cli": "^3.3.5"
},
"engines": {
"node": ">=7.0.0"
}
}