-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
44 lines (44 loc) · 960 Bytes
/
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
{
"name": "hapi-qs",
"version": "2.0.1",
"description": "Hapi plugin to bring back qs support",
"main": "index.js",
"scripts": {
"test": "node_modules/mocha/bin/mocha \"tests/**/*.test.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/daf-spr/hapi-qs.git"
},
"keywords": [
"hapi",
"hapi-qs"
],
"author": "Damian Andres Fortuna",
"contributors": [
{
"name": "Rajiv Makhijani",
"email": "[email protected]"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/daf-spr/hapi-qs/issues"
},
"homepage": "https://github.com/daf-spr/hapi-qs#readme",
"dependencies": {
"joi": "^13.1.2",
"qs": "^6.0.1"
},
"devDependencies": {
"chai": "^3.4.1",
"form-data": "^2.3.1",
"hapi": "^17.1.1",
"mocha": "^2.3.4",
"request-promise": "^1.0.2",
"stream-to-promise": "^2.2.0"
},
"peerDependencies": {
"hapi": ">=17.x.x"
}
}