-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.18 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
{
"name": "@md03/tor",
"version": "1.0.0",
"description": "Node.js Tor client without dependencies",
"main": "dist/cjs/index.js",
"typings": "dist/cjs/index.d.ts",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"prepare": "husky",
"test": "node --import tsx --test tests/*.spec.ts",
"build": "rimraf dist && tsc && tsc -p tsconfig.module.json",
"sample": "node ./tests/example.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michaldziuba03/tor-client.git"
},
"keywords": [
"tor",
"tor-client",
"proxy",
"http",
"socks",
"socks5",
"socket",
"networking"
],
"author": "michaldziuba03",
"license": "MIT",
"bugs": {
"url": "https://github.com/michaldziuba03/tor-client/issues"
},
"homepage": "https://github.com/michaldziuba03/tor-client#readme",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/node": "^16.18.118",
"husky": "^9.1.6",
"rimraf": "^6.0.1",
"tsx": "^4.19.2",
"typescript": "^4.9.5"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}