-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 732 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 732 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
{
"name": "tor-request",
"version": "3.1.2",
"description": "send http/https requests through Tor.",
"main": "index.js",
"dependencies": {
"request": "~2.88.0",
"socks-proxy-agent": "~5.0.0"
},
"devDependencies": {
"mocha": "~7.0.1",
"spacestandard": "~0.2.0"
},
"scripts": {
"lint": "spacestandard index.js",
"fixlint": "spacestandard --fix index.js",
"test": "mocha test/test.js",
"test-all": "npm run test-control-port && npm run test",
"test-control-port": "mocha test/test-control-port.js"
},
"author": "talmobi",
"email": "talmo.christian@gmail.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/talmobi/tor-request"
}
}