-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
49 lines (49 loc) · 1.34 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
47
48
49
{
"name": "react-gravatar",
"description": "React component for rendering a gravatar profile image",
"version": "2.6.3",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/KyleAMathews/react-gravatar/issues"
},
"dependencies": {
"is-retina": "^1.0.3",
"md5": "^2.1.0",
"prop-types": "^15.5.10",
"query-string": "^4.2.2"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.10.1",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2"
},
"homepage": "https://github.com/KyleAMathews/react-gravatar",
"keywords": [
"gravatar",
"react",
"react-component"
],
"license": "MIT",
"main": "./dist/index.js",
"peerDependencies": {
"react": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/KyleAMathews/react-gravatar.git"
},
"scripts": {
"build": "babel src --out-dir dist/",
"lint": "eslint --ext .js,.jsx --ignore-path .gitignore .",
"watch": "babel -w src --out-dir dist/"
}
}