-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.54 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
{
"name": "@request/legacy",
"version": "0.1.2",
"description": "HTTP Client Library",
"keywords": [
"request",
"http",
"https",
"client"
],
"license": "Apache-2.0",
"homepage": "https://github.com/request/legacy",
"author": "Simeon Velichkov <[email protected]> (http://simov.github.io)",
"repository": {
"type": "git",
"url": "https://github.com/request/legacy.git"
},
"dependencies": {
"@request/core": "~0.1.0",
"@request/digest": "~0.1.0",
"@request/headers": "~0.1.0",
"@request/multipart": "~0.1.0",
"@request/oauth": "~0.1.0",
"http-signature": "~1.0.2",
"hawk": "~3.1.0",
"aws-sign2": "~0.6.0",
"iconv-lite": "~0.4.13",
"tough-cookie": "~2.2.0",
"tunnel-agent": "~0.4.1",
"extend": "~3.0.0",
"har-validator": "~2.0.2"
},
"devDependencies": {
"bluebird": "^3.0.2",
"browserify": "^12.0.1",
"browserify-istanbul": "^0.1.5",
"buffer-equal": "^0.0.1",
"eslint": "1.9.0",
"function-bind": "^1.0.2",
"istanbul": "^0.4.0",
"karma": "^0.13.10",
"karma-browserify": "^4.4.0",
"karma-cli": "^0.1.1",
"karma-coverage": "^0.5.3",
"karma-phantomjs-launcher": "^0.1.4",
"karma-tap": "^1.0.3",
"minimist": "^1.2.0",
"rimraf": "^2.2.8",
"server-destroy": "^1.0.1",
"tape": "^4.2.0",
"taper": "^0.4.0"
},
"main": "index.js",
"files": [
"lib/",
"LICENSE",
"README.md",
"index.js"
],
"scripts": {
"test": "npm run test-ci",
"test-ci": "node tests/core.js -m tape"
}
}