-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.94 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
{
"name": "fetch-dns",
"version": "1.0.0-rc.4",
"description": "A drop-in replacement of Node's 'dns' module using 'fetch' and DNS-over-HTTPS",
"main": "./build/index.js",
"types": "./build",
"scripts": {
"test": "yarn run build && yarn run eslint && DEBUG='*,-babel,-fetch-dns:debug,-fetch-dns:rrtypes:debug' jest --runInBand --detectOpenHandles",
"build": "yarn run clean && ./script/generateConstants.sh && ./script/generateRrtypes.sh && tsc -b ./tsconfig.json",
"prepare": "yarn run build",
"clean": "rm -rf ./build ./src *.tar.gz *.tgz",
"eslint": "yarn run clean && eslint --ext .js,.ts --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/RobertFischer/fetch-dns.git"
},
"keywords": [
"fetch",
"dns",
"react-native",
"browser",
"node",
"node.js",
"https",
"dns-over-https",
"doh"
],
"author": "Robert Fischer <[email protected]>",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/RobertFischer/fetch-dns/issues"
},
"homepage": "https://github.com/RobertFischer/fetch-dns#readme",
"dependencies": {
"@ve-mobile/fun-promises": "../fun-promises/",
"cross-fetch": "^3.0.5",
"debug": "^4.1.1",
"events": "^3.2.0",
"lodash": "^4.17.19",
"stream": "^0.0.2",
"tslib": "^2.0.1",
"validator": "^13.1.1"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.7",
"@semantic-release/npm": "^7.0.5",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/debug": "^4.1.5",
"@types/events": "^3.0.0",
"@types/jest": "^26.0.8",
"@types/lodash": "^4.14.158",
"@types/node": "^14.0.23",
"@types/validator": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"babel-eslint": "^10.1.0",
"conventional-changelog-conventionalcommits": "^4.4.0",
"eslint": "^7.8.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-lodash": "^7.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"jest": "^26.2.2",
"jest-extended": "^0.11.5",
"prettier": "^2.1.1",
"semantic-release": "^17.1.1",
"ts-jest": "^26.1.4",
"typescript": "^4.0.2"
},
"engines": {
"node": ">= 11.14.0"
},
"browserslist": [
"cover 99% and > 0.1%",
"last 2 years",
"last 2 major versions and last 5 years",
"last 2 Chrome major versions and > 0.1%",
"last 2 Firefox major versions and > 0.1%",
"last 2 Safari major versions and > 0.1%",
"last 2 Edge major versions and > 0.1%",
"last 5 and_chr major versions and > 0.1%",
"last 5 and_ff major versions and > 0.1%",
"last 5 ios_saf major versions and > 0.1%",
"last 5 op_mini major versions and > 0.1%",
"last 5 samsung major versions and > 0.1%",
"last 5 android major versions and > 0.1%",
"maintaind node versions",
"not dead"
]
}