-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.34 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
{
"name": "@mysteriumnetwork/node",
"version": "0.0.0-snapshot.1",
"description": "Mysterium Network node",
"keywords": [
"mysterium",
"mysterium-network",
"client",
"blockchain",
"decentralized",
"vpn"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"/lib"
],
"private": false,
"bin": {
"myst-download": "lib/postinstall.js"
},
"scripts": {
"postinstall": "node -e \"if (require('fs').existsSync('./lib/postinstall.js')){process.exit(5)} \" || node lib/postinstall.js",
"lint": "eslint src",
"build": "tsc"
},
"repository": "git+https://github.com/mysteriumnetwork/node-js.git",
"author": "Mysterium Network",
"license": "MIT",
"engines": {
"node": ">=16"
},
"dependencies": {
"extract-zip": "^2.0.0",
"node-fetch": "^2.6.7",
"semver": "^7.3.7",
"targz": "^1.0.1"
},
"devDependencies": {
"@types/node": "16",
"@types/node-fetch": "^2.6.2",
"@types/semver": "^7.3.10",
"@types/targz": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
}
}