-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.26 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
{
"name": "hapi-gitlab-webhooks",
"version": "1.1.2",
"description": "A Hapi plugin for receiving requests from the GitLab webhooks API.",
"keywords": [
"hapi",
"gitlab",
"api",
"webhooks"
],
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/lucaspouzac/hapi-gitlab-webhooks.git"
},
"scripts": {
"compile": "babel --presets es2015 -d dist/ lib/",
"prepublish": "npm run compile",
"start": "node example/server.js",
"test": "mocha --reporter spec -r chai"
},
"authors": [
"Lucas Pouzac <[email protected]> (https://github.com/lucaspouzac)"
],
"license": "MIT",
"dependencies": {
"boom": "7.1.1",
"joi": "13.1.1"
},
"peerDependencies": {
"hapi": ">=17.x.x"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-preset-es2015": "6.24.1",
"chai": "4.1.2",
"hapi": "17.2.0",
"mocha": "5.0.0"
},
"bugs": {
"url": "https://github.com/lucaspouzac/hapi-gitlab-webhooks/issues"
},
"homepage": "https://github.com/lucaspouzac/hapi-gitlab-webhooks#readme",
"directories": {
"example": "example",
"lib": "lib",
"test": "test"
},
"author": "Lucas Pouzac <[email protected]> (https://github.com/lucaspouzac)"
}