This repository has been 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
/
Copy pathpackage.json
100 lines (100 loc) · 2.67 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
{
"name": "@hapiness/quick-start",
"version": "1.1.0",
"description": "Quick start project to create a Hapiness application with all its features",
"main": "index.js",
"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",
"dev:watch": "make clean-dev && concurrently -k --raw \"make build-dev\" \"make run-dev\""
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/hapinessjs/quick-start.git"
},
"keywords": [
"HapiJS",
"Hapi",
"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": "Antoine Gomez",
"url": "https://github.com/antoinegomez"
},
{
"name": "Sébastien Ritz",
"url": "https://github.com/reptilbud"
},
{
"name": "Nicolas Jessel",
"url": "https://github.com/njl07"
}
],
"license": "SEE LICENSE IN https://github.com/hapinessjs/quick-start/blob/master/LICENSE.md",
"bugs": {
"url": "https://github.com/hapinessjs/quick-start/issues"
},
"homepage": "https://github.com/hapinessjs/quick-start#readme",
"dependencies": {
"@hapiness/biim": "^1.4.0",
"@hapiness/config": "^1.1.0",
"@hapiness/core": "^1.2.2",
"@hapiness/http": "^1.1.1",
"@hapiness/logger": "^1.1.0",
"@hapiness/swag": "^1.1.0",
"@types/node": "^8.0.53",
"debug": "^3.1.0",
"rxjs": "^5.5.2"
},
"devDependencies": {
"@types/fs-extra": "^4.0.5",
"concurrently": "^3.5.0",
"coveralls": "^3.0.0",
"fs-extra": "^4.0.2",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^4.0.1",
"mocha-typescript": "^1.1.12",
"nodemon": "^1.12.1",
"rimraf": "^2.6.2",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"typescript": "^2.6.1",
"unit.js": "^2.0.0"
},
"engines": {
"node": ">=7.0.0"
}
}