-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 907 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 907 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": "react-gravatar-image",
"version": "1.0.2",
"description": "A react component to show gravatar image",
"keywords": [
"react-component",
"react",
"gravatar",
"gravatar-image"
],
"main": "gravatar.js",
"author": "Budi Irawan <deerawan@gmail.com>",
"license": "MIT",
"scripts": {
"build": "jsx src/gravatar.jsx > gravatar.js && browserify -t reactify demo/source.js -o demo/dist.js",
"test": "jest",
"prepublish": "npm run build"
},
"jest": {
"scriptPreprocessor": "<rootDir>/preprocessor.js",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/md5"
]
},
"dependencies": {
"md5": "^2.0.0",
"react": "^0.13.3"
},
"devDependencies": {
"browserify": "^11.0.1",
"jest": "^0.1.40",
"jest-cli": "^0.4.10",
"react-tools": "^0.13.3",
"reactify": "^1.1.1"
}
}