-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.64 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.64 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
64
{
"name": "react-image-compare",
"version": "0.0.4",
"description": "React components for low-level picture comparisons",
"main": "dist/index.js",
"style": "css/style.css",
"scripts": {
"prepublish": "babel src --out-dir dist",
"dev": "webpack-dev-server --progress --colors --config webpack.dev.config.js",
"docs": "NODE_ENV=production webpack -p --progress --colors",
"start": "npm run dev"
},
"author": "Matthew Jones",
"license": "MIT",
"keywords": [
"picture-comparison",
"react",
"twenty-twenty"
],
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.5.2",
"css-loader": "^0.15.1",
"cssnext-loader": "^1.0.1",
"file-loader": "^0.8.4",
"html-loader": "^0.3.0",
"json-loader": "^0.5.2",
"raw-loader": "^0.5.1",
"react-hot-loader": "^1.3.0",
"style-loader": "^0.12.3",
"webpack": "^1.10.1",
"webpack-dev-server": "^1.10.1"
},
"peerDependencies": {
"react": "^15.0.1",
"react-dom": "^15.0.0"
},
"dependencies": {
"react-track": "^0.3.4",
"react-imation": "^0.5.3",
"functional-easing": "^1.0.8",
"normalize.css": "^4.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hew/react-image-compare.git"
},
"bugs": {
"url": "https://github.com/hew/react-image-compare/issues"
},
"homepage": "https://github.com/hew/react-image-compare",
"babel": {
"presets": [
"es2015",
"stage-0",
"react"
]
}
}