-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.13 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
40
41
42
43
44
45
46
{
"name": "js-gravatar",
"version": "1.1.3",
"description": "A vanilla JS library to get a user's gravatar and if it doesn't exist provides one different from gravatar default",
"main": "dist/js-gravatar.js",
"scripts": {
"test": "node_modules/.bin/jest",
"dev": "node_modules/.bin/webpack -p --watch",
"build": "node_modules/.bin/webpack -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chukwumaijem/js-gravatar.git"
},
"keywords": [
"gravatar",
"avatar",
"javascript",
"angular-avatar",
"angular-gravatar",
"react-gravatar",
"react-avatar",
"vue-gravatar",
"vue-avatar"
],
"author": "Chukwuma Ezumezu",
"license": "MIT",
"bugs": {
"url": "https://github.com/chukwumaijem/js-gravatar/issues"
},
"homepage": "https://github.com/chukwumaijem/js-gravatar#readme",
"jest": {
"verbose": true
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"babel-loader": "^8.0.6",
"jest": "^25.5.4",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"md5": "^2.2.1"
}
}