-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (54 loc) · 1.39 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
{
"name": "@mattduffy/webfinger",
"version": "1.0.0",
"description": "A webfinger client/server.",
"author": "Matthew Duffy <mattduffy@gmail.com>",
"license": "ISC",
"main": "./src/index.js",
"type": "module",
"homepage": "https://github.com/mattduffy/webfnger#readme",
"respository": {
"type": "git",
"url": "git+https://github.com/mattduffy/webfinger.git"
},
"bugs": {
"url": "https://github.com/mattduffy/webfinger/issues"
},
"exports": {
".": "./src/index.js",
"./get": "./src/get.js",
"./get.js": "./src/get.js",
"./post": "./src/post.js",
"./post.js": "./src/post.js",
"./nodeinfo": "./src/nodeinfo.js",
"./nodeinfo.js": "./src/nodeinfo.js",
"./filetype": "./src/filetype.js",
"./filetype.js": "./src/filetype.js",
"./webfinger": "./src/webfinger.js",
"./webfinger.js": "./src/webfinger.js",
"./host-meta": "./src/host-meta.js",
"./host-meta.js": "./src/host-meta.js",
"./package.json": "./package.json"
},
"scripts": {
"test": "mocha"
},
"devDependencies": {
"chai": "4.3.7",
"chai-http": "4.3.0",
"eslint": "8.28.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.26.0",
"mocha": "10.2.0"
},
"dependencies": {
"debug": "4.3.4"
},
"keywords": [
"webfinger",
"JSON Resource Descriptor",
"jrd",
"host-meta",
"host-meta.json"
]
}