-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 718 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 718 Bytes
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
{
"name": "gravatar",
"description": "Gravatar Node.js library",
"keywords": [
"gravatar",
"avatar",
"package.json"
],
"version": "1.8.2",
"author": "Emerson Macedo <emerleite@gmail.com>",
"repository": {
"type": "git",
"url": "git://github.com/emerleite/node-gravatar.git"
},
"dependencies": {
"blueimp-md5": "^2.16.0",
"email-validator": "^2.0.4",
"querystring": "0.2.0",
"yargs": "^15.4.1"
},
"devDependencies": {
"mocha": "8.1.1",
"nixt": "^0.5.1",
"should": "13.2.3"
},
"main": "index.js",
"scripts": {
"test": "mocha -R spec"
},
"license": "MIT",
"engines": {
"node": ">=10"
},
"bin": {
"gravatar": "cli.js"
}
}