-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 910 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
{
"name": "@openpgp/hkp-client",
"version": "0.0.3",
"description": "A client for the OpenPGP HTTP Keyserver Protocol (HKP) in order to lookup and upload keys on standard public key servers.",
"main": "src/hkp.js",
"browser": {
"node-fetch": false
},
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha test/hkp.js",
"postversion": "git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openpgpjs/hkp-client.git"
},
"keywords": [
"hkp",
"client",
"openpgp"
],
"author": "Tankred Hase",
"license": "LGPL-3.0+",
"bugs": {
"url": "https://github.com/openpgpjs/hkp-client/issues"
},
"homepage": "https://github.com/openpgpjs/hkp-client#readme",
"devDependencies": {
"chai": "^4.3.0",
"mocha": "^8.3.0"
},
"dependencies": {
"node-fetch": "^2.6.1"
}
}