-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.5 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
56
{
"name": "react-size",
"version": "0.1.1",
"description": "Helpers to manage browser size changes in React.",
"main": "index.js",
"scripts": {
"clean": "rm -rf ./dist/*",
"es5": "node ./node_modules/.bin/babel ./src -d ./dist",
"compile": "npm run clean && npm run es5",
"start": "webpack-dev-server --hot --inline --config webpack/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "xananax@yelostudio.com",
"license": "MIT",
"dependencies": {
"element-resize-detector": "^1.0.3",
"jobj": "^0.1.6",
"react": "^0.14.3",
"react-dom": "^0.14.3"
},
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-core": "^6.2.0",
"babel-jest": "^6.0.1",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"css-loader": "^0.23.0",
"react": "^0.14.3",
"react-addons-test-utils": "^0.14.3",
"react-dom": "^0.14.3",
"react-hot-loader": "^1.3.0",
"style-loader": "^0.13.0",
"stylus-loader": "^1.4.2",
"webpack": "^1.12.6",
"webpack-dev-server": "1.12.1"
},
"directories": {
"example": "example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Xananax/react-size.git"
},
"keywords": [
"react",
"events",
"resize",
"onresize"
],
"bugs": {
"url": "https://github.com/Xananax/react-size/issues"
},
"homepage": "https://github.com/Xananax/react-size#readme"
}