-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.49 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
{
"name": "react-remote-image",
"version": "0.4.0",
"description": "Image component with declarative state control. Just like Relay.",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib dist",
"build:lib": "NODE_ENV=production babel src --out-dir lib",
"build:umd": "cross-env NODE_ENV=development webpack src/index.js dist/remote-image.js",
"build:umd:min": "cross-env NODE_ENV=production webpack src/index.js dist/remote-image.min.js",
"build": "npm run clean && npm run build:lib",
"prepublish": "npm run build",
"styleguide-server": "styleguidist server",
"styleguide-build": "styleguidist build"
},
"author": "Axept <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/axept/react-remote-image.git"
},
"bugs": "https://github.com/axept/react-remote-image/issues",
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0"
},
"devDependencies": {
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.10.2",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"cross-env": "^1.0.7",
"react-dom": "^0.14.8",
"react-hot-loader": "^1.3.0",
"react-styleguidist": "^2.3.1",
"rimraf": "^2.3.4",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"prop-types": "^15.6.0"
}
}