-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 875 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
35
36
37
38
39
40
41
42
43
44
{
"name": "rctgen",
"version": "0.0.4",
"description": "React CLI for generating components",
"license": "MIT",
"repository": "michalak111/rctgen",
"author": {
"name": "Jan Michalak",
"email": "[email protected]"
},
"main": "index.js",
"preferGlobal": true,
"bin": {
"rctgen": "./dist/index.js"
},
"scripts": {
"prepublish": "babel src --out-dir ./dist"
},
"files": ["dist"],
"keywords": [
"react",
"cli",
"generator",
"components"
],
"dependencies": {
"findup-sync": "^2.0.0",
"fs": "^0.0.1-security",
"minimist": "^1.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0"
},
"babel": {
"presets": [
"env"
],
"plugins": [
"transform-object-rest-spread"
]
}
}