-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "webmention-handler",
"version": "0.0.9",
"description": "A handler for web mentions",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/vandie/webmention-handler",
"scripts": {
"build": "rollup -c rollup.config.js",
"test": "jest",
"test:coverage": "jest --coverage --collectCoverageFrom='[\"src/**/*.{js,ts}\"]'",
"setup:hooks": "husky install",
"prepublish": "npm run build"
},
"keywords": [
"webmentions",
"indieweb",
"mentions"
],
"author": "Michael Walter Van Der Velden <[email protected]> (https://mikevdv.dev)",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.3",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.4",
"@types/node": "^18.0.1",
"husky": "^8.0.1",
"jest": "^28.1.2",
"rollup": "^2.75.7",
"ts-jest": "^28.0.5",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"dependencies": {
"cross-fetch": "^3.1.5",
"microformats-parser": "^1.4.1",
"node-html-parser": "^5.3.3"
}
}