-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
58 lines (58 loc) · 1.44 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
{
"name": "@remy/webmention",
"version": "1.5.0",
"description": "Web Mentions sender",
"main": "./shared/lib/webmention.js",
"repository": "github:remy/wm",
"bin": {
"wm": "./bin/wm.js",
"webmention": "./bin/wm.js"
},
"files": [
"shared/lib/**/*",
"bin/wm.js"
],
"types": "./index.d.ts",
"scripts": {
"start": "npx enhance dev --no-warnings",
"lint": "eslint ./app/**/*.mjs --fix",
"enhance": "enhance",
"test:watch": "tap __tests__/*.test.js --no-coverage-report --watch",
"test": "tap"
},
"keywords": [
"webmention",
"webmentions",
"indieweb"
],
"author": "Remy Sharp (https://remysharp.com)",
"license": "MIT",
"dependencies": {
"cheerio": "^0.22.0",
"clui": "^0.3.6",
"decodeuricomponent": "^0.3.1",
"follow-redirects": "^1.7.0",
"li": "^1.3.0",
"microformat-node": "^2.0.1",
"ms": "^2.1.2",
"node-fetch": "^2.6.1",
"optimist": "^0.6.1",
"rss-parser": "^3.7.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@enhance/arc-plugin-enhance": "^6.2.3",
"@enhance/cli": "latest",
"@enhance/element": "^1.3.1",
"@enhance/styles-cribsheet": "^0.0.9",
"@enhance/types": "^0.6.1",
"@remy/envy": "^4.0.2",
"aws-sdk": "^2.466.0",
"eslint": "^8.49.0",
"markdown-it-named-headings": "^1.1.0",
"markdown-it-task-lists": "^2.1.1",
"passport": "^0.4.0",
"passport-github2": "^0.1.11",
"tap": "^16.3.9"
}
}