-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) 路 1.27 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) 路 1.27 KB
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
{
"name": "keybase-verify",
"version": "2.0.0",
"description": "Verify that a message was signed by the owner of the public key",
"main": "lib/index.js",
"scripts": {
"test": "standard && jest",
"compile": "rimraf lib/ && babel -d lib/ src/",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jjperezaguinaga/keybase-verify.git"
},
"engines": {
"node": ">=6"
},
"files": [
"lib/index.js"
],
"keywords": [
"keybase",
"kbpgp",
"pgp",
"crypto",
"gpg"
],
"author": {
"name": "Jose Aguinaga",
"email": "jj.perez.aguinaga@gmail.com",
"url": "jjperezaguinaga.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jjperezaguinaga/keybase-verify/issues"
},
"homepage": "https://github.com/jjperezaguinaga/keybase-verify#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-jest": "^17.0.2",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-3": "^6.17.0",
"jest": "^17.0.3",
"rimraf": "^2.5.4",
"standard": "^8.6.0"
},
"dependencies": {
"babel-runtime": "^6.18.0",
"bluebird": "^3.4.6",
"kbpgp": "^2.0.59"
}
}