-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 855 Bytes
/
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": "rel-payment",
"version": "6.0.0",
"description": "Discover a rel=\"payment\" donations URL given a URL for the containing page. ",
"main": "index.js",
"types": "./index.d.ts",
"type": "module",
"exports": {
".": "./index.js"
},
"scripts": {
"test": "NODE_EXTRA_CA_CERTS=./test/safe-keypair/local.cert node --test",
"lint": "eslint ."
},
"engines": {
"node": ">=18.12"
},
"files": [
"index.d.ts"
],
"repository": "github:qubyte/rel-payment",
"keywords": [
"payment",
"donations",
"microformat",
"indieweb"
],
"author": "Mark Stanley Everitt",
"license": "MIT",
"dependencies": {
"http-link-header": "^1.1.1",
"parse5-sax-parser": "^7.0.0"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-qubyte": "^6.0.0",
"globals": "^14.0.0"
}
}