-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 946 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
{
"name": "qreq",
"version": "0.2.0",
"description": "A q-style promise wrapper for HTTP requests",
"main": "dist/qreq.js",
"dependencies": {
"q": "~1.0.1",
"request": "~2.34.0"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-coffee": "^0.10.1",
"grunt-coffeelint": "0.0.10",
"grunt-contrib-clean": "^0.5.0",
"express": "^4.3.2",
"grunt-mocha-test": "^0.11.0",
"coffee-script": "^1.7.1",
"http-status": "^0.1.7",
"body-parser": "^1.3.0",
"chai": "^1.9.1"
},
"scripts": {
"test": "grunt test",
"prepublish": "grunt test && grunt build"
},
"repository": {
"type": "git",
"url": "https://github.com/jpstevens/qreq.git"
},
"keywords": [
"q",
"request",
"promise"
],
"author": "Jack Stevens",
"license": "ISC",
"bugs": {
"url": "https://github.com/jpstevens/qreq/issues"
},
"homepage": "https://github.com/jpstevens/qreq"
}