-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
53 lines (53 loc) · 1.35 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
{
"name": "react-iscroll",
"version": "2.0.3",
"homepage": "https://github.com/schovi/react-iscroll",
"keywords": [
"react",
"iscroll",
"scroll"
],
"bugs": {
"url": "https://github.com/schovi/react-iscroll/issues"
},
"license": "MIT",
"author": {
"name": "David Schovanec"
},
"repository": {
"type": "git",
"url": "[email protected]:schovi/react-iscroll.git"
},
"main": "dist/react-iscroll.js",
"jsnext:main": "src/react-iscroll.jsx",
"dependencies": {
"deep-equal": "1.0.1"
},
"devDependencies": {
"babel-cli": "6.8.0",
"babel-loader": "6.2.4",
"babel-plugin-syntax-class-properties": "6.8.0",
"babel-plugin-transform-class-properties": "6.8.0",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"css-loader": "0.23.1",
"iscroll": "5.2.0",
"prop-types": "^15.5",
"react": "^15.5",
"react-dom": "^15.5",
"react-hot-api": "^0.5.0",
"react-hot-loader": "^1.3.0",
"style-loader": "0.13.1",
"webpack": "1.13.0",
"webpack-dev-server": "1.14.1"
},
"peerDependencies": {
"react": ">=15.5.0",
"react-dom": ">=15.5.0"
},
"scripts": {
"compile": "babel -d dist/ src/",
"prepublish": "npm run compile",
"example": "webpack-dev-server --content-base example/ --config example/webpack.config.js --progress --hot --inline"
}
}