-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.75 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.75 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-auto-scale",
"version": "1.0.4",
"description": "Wrap a single child with this component to make it auto-scale to fit its parent (or a maximum size specified through props).",
"main": "./lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"clean": "rimraf lib dist coverage",
"lint": "eslint src test",
"prepublish": "npm run clean && npm run lint && npm run build",
"watch": "npm run build -- -w"
},
"repository": {
"type": "git",
"url": "https://github.com/tomat/react-auto-scale.git"
},
"keywords": [
"react",
"reactjs",
"scale",
"transform",
"resize",
"react-component"
],
"author": "tomat",
"license": "MIT",
"bugs": {
"url": "https://github.com/tomat/react-auto-scale/issues"
},
"homepage": "https://github.com/tomat/react-auto-scale",
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.26",
"babel-eslint": "^5.0.0-beta9",
"babel-loader": "^6.2.0",
"babel-plugin-transform-decorators-legacy": "^1.2.0",
"babel-preset-es2015-loose": "^6.1.4",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"eslint": "^1.7.1",
"eslint-config-rackt": "1.1.0",
"eslint-plugin-react": "^3.6.3",
"expect": "^1.8.0",
"isparta": "4.0.0",
"istanbul": "^0.3.17",
"jsdom": "~5.4.3",
"mocha": "^2.2.5",
"react": "0.14.8",
"react-addons-test-utils": "^0.14.0",
"react-dom": "0.14.8",
"react-redux": "4.4.1",
"react-refetch": "1.0.0-beta.4",
"redux": "3.3.1",
"rimraf": "^2.3.4",
"webpack": "2.1.0-beta.7"
},
"dependencies": {
"element-resize-event": "^2.0.5",
"prop-types": "^15.6.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-rc"
}
}