-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 984 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 984 Bytes
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
{
"name": "sync-req",
"version": "0.1.3",
"description": "Synchronous request without extensively using the filesystem.",
"license": "MIT",
"main": "index.js",
"homepage": "https://github.com/marcelerz/sync-req",
"bugs": "https://github.com/marcelerz/sync-req/issues",
"author": {
"name": "Marcel Erz",
"email": "me@marcelerz.com",
"url": "http://www.marcelerz.com"
},
"repository": {
"type": "git",
"url": "https://github.com/marcelerz/sync-req.git"
},
"keywords": [
"web",
"http",
"sync",
"request"
],
"scripts": {
"test": "istanbul cover -- _mocha --reporter spec",
"docs": "yuidoc ."
},
"dependencies": {
"http-response-object": "~1.1.0",
"sync-module": "~0.1.3",
"then-request": "~2.2.0"
},
"devDependencies": {
"chai": "~3.5.0",
"codeclimate-test-reporter": "~0.3.3",
"coveralls": "~2.11.12",
"istanbul": "~0.4.4",
"mocha": "~3.0.2",
"yuidocjs": "~0.10.2"
}
}