-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
108 lines (108 loc) · 2.81 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
{
"name": "@hapiness/core",
"version": "1.6.1",
"description": "Project to have a HapiJS (https://hapijs.com/) based framework to create easier NodeJS back-end with some awesome features",
"main": "commonjs/index.js",
"types": "index.d.ts",
"private": false,
"scripts": {
"test": "make test",
"pretest": "make pretest",
"coveralls": "make coveralls",
"packaging": "make packaging",
"prebuild": "make pretest && make test && make clean",
"build": "make tsc",
"postbuild": "make packaging"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/hapinessjs/hapiness.git"
},
"keywords": [
"HapiJS",
"Hapi",
"Framework",
"NodeJS",
"Node",
"HTTP",
"Websocket",
"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": "Antoine Gomez",
"url": "https://github.com/antoinegomez"
},
{
"name": "Sébastien Ritz",
"url": "https://github.com/reptilbud"
},
{
"name": "Nicolas Jessel",
"url": "https://github.com/njl07"
},
{
"name": "Tara Lerias",
"url": "https://github.com/tlerias"
}
],
"license": "SEE LICENSE IN https://github.com/hapinessjs/hapiness/blob/master/LICENSE.md",
"bugs": {
"url": "https://github.com/hapinessjs/hapiness/issues"
},
"homepage": "https://github.com/hapinessjs/hapiness#readme",
"dependencies": {
"@types/hapi": "^16.1.14",
"@types/hoek": "^4.1.3",
"@types/joi": "^13.0.7",
"@types/node": "^9.6.0",
"@types/websocket": "^0.0.38",
"debug": "^3.1.0",
"hapi": "^16.6.3",
"injection-js": "^2.2.2",
"reflect-metadata": "^0.1.12",
"tslib": "^1.10.0",
"websocket": "^1.0.25"
},
"devDependencies": {
"@types/fs-extra": "^5.0.1",
"coveralls": "^3.0.0",
"fs-extra": "^4.0.2",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^4.0.1",
"mocha-typescript": "^1.1.12",
"rimraf": "^2.6.2",
"rxjs": "^5.5.7",
"ts-node": "^3.3.0",
"tslint": "^5.9.1",
"typescript": "^2.7.2",
"unit.js": "^2.0.0"
},
"engines": {
"node": ">=7.0.0"
},
"peerDependencies": {
"rxjs": "^5.5.7"
}
}