-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.25 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
{
"name": "@hapiness/etcd3",
"version": "1.2.1",
"description": "ETCD3 module for Hapiness framework",
"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/etcd3-module.git"
},
"keywords": [
"HapiJS",
"Hapi",
"Hapiness",
"Framework",
"NodeJS",
"Etcd3",
"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"
}
],
"license": "SEE LICENSE IN https://github.com/hapinessjs/etcd3-module/blob/master/LICENSE.md",
"bugs": {
"url": "https://github.com/hapinessjs/etcd3-module/issues"
},
"homepage": "https://github.com/hapinessjs/etcd3-module#readme",
"dependencies": {
"@types/node": "^8.5.1",
"debug": "^3.1.0",
"etcd3": "^0.2.6"
},
"devDependencies": {
"@hapiness/core": "^1.5.0",
"@types/fs-extra": "^5.0.0",
"coveralls": "^3.0.0",
"fs-extra": "^5.0.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^4.0.1",
"mocha-typescript": "^1.1.12",
"rimraf": "^2.6.2",
"rxjs": "^5.5.5",
"ts-node": "^4.0.1",
"tslint": "^5.8.0",
"typescript": "^2.6.2",
"unit.js": "^2.0.0"
},
"peerDependencies": {
"@hapiness/core": "^1.5.0",
"rxjs": "^5.5.5"
},
"engines": {
"node": ">=8.4.0"
}
}