forked from NickNaso/yahc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.12 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
{
"name": "yahc",
"description": "Yet Another Http Client",
"version": "2.0.0",
"contributors": [
{
"name": "Nicola Del Gobbo",
"email": "[email protected]"
},
{
"name": "Mauro Doganieri",
"email": "[email protected]"
}
],
"keywords": [
"client",
"http",
"rest",
"api",
"restful",
"request",
"webservice"
],
"license": "Apache-2.0",
"scripts": {
"test": "node_modules/jasmine/bin/jasmine.js JASMINE_CONFIG_PATH=test/jasmine.json"
},
"engines": {
"node": ">= 6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/NickNaso/yahc.git"
},
"bugs": {
"url": "https://github.com/NickNaso/yahc/issues"
},
"homepage": "http://www.nacios.it/",
"dependencies": {
"co": "^4.6.0",
"co-request": "^1.0.0",
"fs-extra": "^0.30.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"body-parser": "^1.15.2",
"express": "^4.14.0",
"formidable": "^1.0.17",
"jasmine": "^2.5.2"
},
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"index.js",
"lib/"
]
}