-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.57 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
{
"name": "domainfilter",
"version": "1.0.5",
"description": "A fully-typed class for filtering a list of domain names in various ways",
"author": "Alex Crocker <[email protected]> (https://croc.io)",
"homepage": "https://crock.github.io/DomainFilter/",
"keywords": [
"DomainFilter",
"domains",
"filter",
"typescript",
"domain-tools",
"utilities"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-typescript": "^11.1.2",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.2",
"eslint": "^8.45.0",
"jest": "^29.6.1",
"nodemon": "^3.0.1",
"rollup": "^3.26.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.0",
"typedoc": "^0.24.8",
"typescript": "^5.1.6"
},
"types": "dist/DomainFilter.d.ts",
"main": "dist/DomainFilter.cjs.js",
"module": "dist/DomainFilter.esm.js",
"browser": "dist/DomainFilter.umd.js",
"files": [
"dist",
"src/DomainFilter.ts",
"scripts"
],
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"test": "jest --config jest.config.cjs",
"docs": "typedoc src/DomainFilter.ts --out docs"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/crock/DomainFilter.git"
},
"dependencies": {
"axios": "^1.6.5",
"punycode": "^2.3.1"
},
"type": "module"
}