-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
102 lines (102 loc) · 2.38 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "dnscrypt",
"version": "0.1.1",
"description": "DNSCrypt - authenticated and encrypted DNS client",
"main": "src/index.js",
"scripts": {
"test": "npx eslint src && npx jest",
"test-ci": "npx eslint src && npx jest --coverage",
"update-resolvers": "wget -O public-resolvers.json https://download.dnscrypt.info/dnscrypt-resolvers/json/public-resolvers.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reklatsmasters/dnscrypt.git"
},
"keywords": [
"dns",
"dnscrypt"
],
"files": [
"src"
],
"author": "Dmitriy Tsvettsikh <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/reklatsmasters/dnscrypt/issues"
},
"homepage": "https://github.com/reklatsmasters/dnscrypt#readme",
"dependencies": {
"binary-data": "^0.6.0",
"dns-packet": "^5.2.1",
"dnsstamp": "^1.1.3",
"nanoresource": "^1.3.0",
"tweetnacl": "^1.0.3",
"universalify": "^1.0.0",
"unordered-set": "^2.0.1"
},
"devDependencies": {
"@nodertc/eslint-config": "^0.3.0",
"@types/jest": "^26.0.3",
"@types/node": "^14.0.14",
"babel-eslint": "^10.1.0",
"eslint": "^7.4.0",
"jest": "^26.1.0",
"prettier": "^2.0.5"
},
"engines": {
"node": ">=12"
},
"eslintConfig": {
"extends": "@nodertc",
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 10
},
"rules": {
"security/detect-non-literal-fs-filename": "off",
"consistent-return": "off",
"unicorn/prevent-abbreviations": "off",
"jsdoc/require-returns": "off"
},
"overrides": [
{
"files": [
"test/**/*.js"
],
"env": {
"jest": true
},
"settings": {
"import/resolver": {
"node": {
"moduleDirectory": [
"node_modules",
"src"
]
}
}
},
"rules": {
"require-jsdoc": "off",
"no-process-exit": "off",
"unicorn/no-process-exit": "off"
}
}
]
},
"jest": {
"modulePaths": [
"<rootDir>"
],
"testRegex": "test/(.*)\\.js$",
"coverageDirectory": "<rootDir>/coverage",
"coveragePathIgnorePatterns": [
"/test/",
"/example/"
],
"collectCoverageFrom": [
"**/src/*.js"
],
"testEnvironment": "node"
}
}