-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.62 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
50
51
52
53
54
55
{
"name": "safeimage",
"version": "0.0.1",
"description": "React Image Component with onError handling",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "./node_modules/.bin/babel ./src --out-dir ./lib",
"build:demo": "npm run compile && webpack --config webpack.config.github-demo.js -p --bail",
"deploy": "npm run build:demo && gh-pages -d example/build",
"prepublishOnly": "npm run compile",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gattermeier/SafeImage.git"
},
"keywords": [
"react",
"image",
"component"
],
"author": {
"name": "Matthias Gattermeier",
"email": "matthias.gattermeier@gmail.com",
"url": "http://www.gattermeier.net"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Gattermeier/SafeImage/issues"
},
"homepage": "https://github.com/Gattermeier/SafeImage#readme",
"peerDependencies": {
"react": ">=0.15.0 <16.0.0",
"react-dom": ">=0.15.0 <16.0.0"
},
"devDependencies": {
"@kadira/storybook": "^2.21.0",
"autoprefixer": "^6.5.3",
"babel-cli": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.19.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"css-loader": "^0.25.0",
"gh-pages": "^0.11.0",
"html-webpack-plugin": "^2.24.1",
"postcss": "^5.2.5",
"postcss-loader": "^1.1.1",
"react": "^15.3.2",
"react-bootstrap": "^0.30.7",
"react-dom": "^15.3.2",
"webpack": "^1.13.3"
}
}