-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.26 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
{
"name": "transform-props-with",
"version": "2.2.0",
"description": "Higher-order component for transforming props",
"author": "Robin Pokorny <[email protected]> (http://robinpokorny.com)",
"main": "./lib/index.js",
"scripts": {
"compile": "babel src --out-dir lib",
"docs":
"jsdoc2md --module-index-format grouped --global-index-format grouped src/*.js > docs/api.md",
"prepublish": "npm run compile",
"pretest": "npm run compile",
"test": "jest"
},
"keywords": ["tx", "transform", "props", "react", "decorator"],
"repository": {
"type": "git",
"url": "https://github.com/robinpokorny/transform-props-with"
},
"dependencies": {
"lodash": "^4.10.0"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-jest": "^16.0.0",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.3.13",
"jest-cli": "^16.0.0",
"jsdoc-to-markdown": "^2.0.1",
"react": "^15.0.2",
"react-addons-test-utils": "^15.0.1",
"react-dom": "^15.0.1",
"react-stateless-wrapper": "^1.0.5"
},
"peerDependencies": {
"react": ">=0.14.0"
},
"license": "MIT"
}