forked from nitesh1mg/create-react-container
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 913 Bytes
/
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
{
"name": "create-react-container",
"version": "0.3.0",
"description": "Create files for a container like Presentational, reducer, action etc.",
"main": "index.js",
"bin": {
"react-container": "./bin/index.js",
"labs-container": "./bin/labsContainer.js"
},
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watch",
"labs-container": "./bin/labsContainer.js"
},
"repository": {
"url": "[email protected]:1mgOfficial/create-react-container.git",
"type": "git"
},
"author": "Sunit Jindal <[email protected]>",
"license": "MIT",
"dependencies": {
"camelcase": "^4.1.0",
"param-case": "^2.1.1",
"pascalcase": "^0.1.1",
"react-presentational": "1.4.4",
"snake-case": "^2.1.0"
},
"devDependencies": {
"babel-jest": "20.0.3",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"jest": "20.0.4"
}
}