forked from kickscondor/granax
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.66 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": "@rohamgames/granax",
"version": "3.3.5",
"description": "complete client implementation of the tor control protocol",
"main": "index.js",
"scripts": {
"postinstall": "node script/download-tbb.js",
"test": "npm run test-suite && npm run linter",
"test-suite": "mocha test/** --recursive",
"coverage": "istanbul cover _mocha -- --recursive",
"linter": "eslint index.js lib test",
"generate-docs": "mkdir -p ./public && rm -r ./public && jsdoc index.js lib -r -R README.md -u ./doc -c .jsdoc.json --verbose -d ./public"
},
"engines": {
"node": ">=8.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/rohamgames/granax.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"tor",
"onion",
"control",
"protocol",
"hidden",
"service",
"anonymous",
"dark",
"net",
"deep",
"web",
"stem"
],
"author": "Rohamgames <Rohamgames@gmail.com>",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/rohamgames/granax/issues"
},
"homepage": "https://gitlab.com/rohamgames/granax#readme",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^3.1.1",
"eslint": "^5.16.0",
"ink-docstrap": "github:pointnetwork/docstrap",
"istanbul": "^0.4.5",
"jsdoc": "^3.6.7",
"mocha": "^5.2.0",
"proxyquire": "^1.8.0",
"sinon": "^2.4.1"
},
"dependencies": {
"async": "^2.6.3",
"latest-torbrowser-version": "^2.0.3",
"merge": "^2.1.1",
"mkdirp": "^0.5.5",
"mv": "^2.1.1",
"progress": "^2.0.3",
"rimraf": "^2.7.1"
},
"optionalDependencies": {
"7zip": "0.0.6",
"ncp": "^2.0.0"
}
}