-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
64 lines (64 loc) · 1.61 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": "mysterium-vpn-js",
"version": "0.0.0-snapshot",
"description": "Javascript SDK for Mysterium node",
"keywords": [
"mysterium",
"vpn",
"dvpn",
"sdk"
],
"repository": {
"type": "git",
"url": "https://github.com/mysteriumnetwork/mysterium-vpn-js.git"
},
"author": {
"name": "Mysterium Network",
"email": "[email protected]",
"url": "https://mysterium.network"
},
"license": "MIT",
"private": false,
"engines": {
"node": ">=16"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/"
],
"scripts": {
"lint": "eslint --ext .js,.ts src",
"test": "jest",
"test-localized": "LANG=tr_TR.UTF-8 jest",
"test-all": "yarn test && yarn test-localized",
"build": "yarn tsc -p tsconfig.build.json",
"tsc-check": "yarn tsc --noEmit",
"ci": "yarn tsc-check && yarn lint && yarn test-all && yarn build"
},
"peerDependencies": {
"@mysteriumnetwork/node": ">= 1.11.1 < 2"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"axios-mock-adapter": "^1.20.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^27.5.1",
"prettier": "^2.7.1",
"ts-jest": "^27.1.4",
"typescript": "^4.7.4"
},
"dependencies": {
"@alloc/quick-lru": "^5.2.0",
"axios": "^0.26.1",
"camelcase": "^6.3.0",
"map-obj": "^4.3.0",
"snakecase-keys": "^4.0.2"
}
}