forked from hiddentao/react-image-holder
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "react-holder",
"version": "1.0.0",
"description": "React image Holder (with holder.js)",
"keywords": [
"react",
"image",
"placeholder",
"holder.js"
],
"author": "Dieter Luypaert <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/moeriki/react-holder",
"bugs": {
"url": "https://github.com/moeriki/react-holder/issues"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/moeriki/react-holder.git"
},
"scripts": {
"pretest": "eslint index.js src/",
"test": "echo 'no tests'",
"build": "babel src/ --out-dir lib/",
"prepublish": "npm run build"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"eslint": "^2.1.0",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-promise": "^1.0.8",
"eslint-plugin-standard": "^1.3.2"
},
"dependencies": {
"holderjs": "~2.8.1",
"qs": "^6.1.0",
"react": "^0.14.7",
"react-dom": "^0.14.7"
}
}