-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 725 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 725 Bytes
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
{
"name": "onion-regex",
"version": "2.0.8",
"description": "Regular expression for matching .onion Tor links (v2 & v3).",
"license": "MIT",
"repository": "k4m4/onion-regex",
"author": {
"name": "Nikolaos Kamarinakis",
"url": "https://nikolaskama.me",
"email": "nikolaskam@gmail.com"
},
"ava": {
"babel": true
},
"engines": {
"node": ">=10"
},
"main": "index.js",
"scripts": {
"test": "xo && ava && tsd"
},
"keywords": [
"onion",
"deep-web",
"links",
"v2",
"v3",
"regex"
],
"files": [
"index.js",
"index.d.ts"
],
"devDependencies": {
"@ava/babel": "^1.0.1",
"ava": "^3.5.2",
"tsd": "^0.13.1",
"xo": "^0.32.1"
}
}