-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.89 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.89 KB
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
{
"name": "@autogram/url-tools",
"version": "2.6.0",
"description": "Helper classes for validating, filtering, and normalizing URLs in bulk",
"exports": "./dist/source/index.js",
"types": "./dist/source/index.d.ts",
"type": "module",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"clean": "shx rm -rf ./dist; ava reset-cache",
"nuke": "npm run clean; rm -rf ./node_modules; rm package-lock.json; npm install",
"test": "ava",
"lint": "xo",
"fix": "xo --fix",
"compile": "tsc",
"prepare": "run-s clean compile",
"pretest": "run-s clean compile",
"posttest": "npm run lint"
},
"files": [
"dist/source/**/*",
"dist/docs/**/*"
],
"xo": {
"space": true,
"prettier": true,
"bracketSpacing": true,
"rules": {
"new-cap": "off",
"max-params": "off"
}
},
"prettier": {
"editorconfig": true,
"semi": true,
"singleQuote": true,
"indent_style": "space",
"indent_size": 2,
"bracketSpacing": true
},
"ava": {
"files": [
"tests/*"
],
"typescript": {
"rewritePaths": {
"tests/": "dist/tests/"
},
"compile": false
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/autogram-is/url-tools.git"
},
"keywords": [
"url",
"scraping",
"webcrawling"
],
"author": "Jeff Eaton <jeff@autogram.is> (http://eaton.fyi/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/autogram-is/url-tools/issues"
},
"homepage": "https://github.com/autogram-is/url-tools#readme",
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@types/node": "^14.11.2",
"ava": "^4.3.1",
"concurrently": "^7.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"shx": "^0.3.4",
"typescript": "^4.7.4",
"xo": "^0.55.0"
},
"dependencies": {
"minimatch": "^9.0.3",
"tldts": "^6.0.13"
}
}