-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
executable file
·68 lines (59 loc) · 1.43 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
59
60
61
62
63
64
65
66
67
68
{
"name": "@request/core",
"version": "0.1.0",
"description": "HTTP Client Library",
"keywords": [
"request",
"http",
"https",
"client",
"request"
],
"license": "Apache-2.0",
"homepage": "https://github.com/request/core",
"author": "Simeon Velichkov <simeonvelichkov@gmail.com> (http://simov.github.io)",
"repository": {
"type": "git",
"url": "https://github.com/request/core.git"
},
"dependencies": {
"@request/headers": "~0.1.0",
"@request/length": "~0.1.0",
"@request/qs": "~0.1.0",
"deep-copy": "~1.1.0",
"mime-types": "~2.1.7",
"bl": "~1.0.0",
"isstream": "~0.1.2",
"json-stringify-safe": "~5.0.1"
},
"devDependencies": {
"mocha": "^2.3.3",
"should": "^7.1.0",
"@request/client": "^0.1.0",
"@request/digest": "^0.1.0",
"@request/multipart": "^0.1.0",
"@request/oauth": "^0.1.0",
"http-auth": "^2.2.8",
"hawk": "^4.0.0",
"http-signature": "^1.0.2",
"oauth-sign": "^0.8.0",
"aws-sign2": "^0.6.0",
"formidable": "^1.0.17",
"tough-cookie": "^2.2.0",
"iconv-lite": "^0.4.13"
},
"main": "index.js",
"files": [
"config/",
"lib/",
"LICENSE",
"README.md",
"index.js"
],
"scripts": {
"test" : "npm run lint && npm run test-ci",
"test-ci" : "mocha --recursive test/",
"test-cov" : "istanbul cover _mocha test/",
"lint" : "eslint . && echo Lint passed"
}
}