-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 862 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
{
"name": "create-new-react-component",
"version": "1.2.1",
"description": "an utility to create a new react component with a single command",
"main": "index.js",
"scripts": {
"create-new-react-component": "node index.js",
"test": "jest"
},
"bin": {
"create-new-react-component": "index.js"
},
"dependencies": {
"commander": "^2.20.3"
},
"author": {
"name": "Snowden Fu",
"email": "snowden.fu+github@gmail.com",
"url": "https://github.com/snowden-fu",
"github": "snowden-fu"
},
"keywords": [
"react",
"component",
"create",
"new",
"utility",
"command",
"cli",
"tool",
"generator"
],
"repository": {
"type": "git",
"url": "https://github.com/snowden-fu/create-new-react-component"
},
"license": "MIT",
"devDependencies": {
"jest": "^29.7.0"
}
}