-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.67 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.67 KB
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
56
57
58
59
60
61
62
63
{
"name": "react-load-image",
"version": "0.1.7",
"description": "A React component for showing placeholder content during image loading",
"main": "./lib/index.js",
"scripts": {
"build:example": "webpack example/example.js example/dist.js",
"build:commonjs": "babel src --out-dir lib",
"build": "npm run build:commonjs",
"prepublish": "npm run build",
"watch": "onchange 'src/**/*.js' -- npm run build"
},
"pre-commit": [
"build"
],
"repository": {
"type": "git",
"url": "git://github.com/DeedMob/react-load-image.git"
},
"keywords": [
"react-component",
"react",
"loader",
"component"
],
"author": "David Furlong <david@deedmob.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/DeedMob/react-load-image/issues"
},
"homepage": "https://github.com/DeedMob/react-load-image",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.25.0",
"babel-eslint": "^3.1.16",
"babel-loader": "^7",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^5.5.8",
"chai": "^3.0.0",
"eslint": "^0.23.0",
"eslint-plugin-react": "^2.5.2",
"express": "^4.12.4",
"git-release-notes": "0.0.2",
"mocha": "^2.2.5",
"mversion": "^1.10.0",
"node-libs-browser": "^0.5.2",
"onchange": "^3.2.1",
"opn": "^2.0.1",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"webpack": "^3.3.0",
"webpack-dev-middleware": "^1.0.11",
"yargs": "^3.11.0"
},
"peerDependencies": {
"prop-types": "^15.6.0",
"react": "^16.0.0"
},
"dependencies": {}
}