-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
53 lines (53 loc) · 1.17 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
43
44
45
46
47
48
49
50
51
52
53
{
"name": "create-react-hook",
"version": "3.0.2",
"description": "CLI for easily bootstrapping react hooks",
"repository": "Hermanya/create-react-hook",
"author": "Herman Starikov <[email protected]>",
"main": "index.js",
"license": "MIT",
"reveal": true,
"bin": {
"create-react-hook": "index.js"
},
"scripts": {
"test": "ava -v lib/**/*.test.js && standard *.js lib/*.js"
},
"engines": {
"node": ">=8",
"npm": ">=5"
},
"keywords": [
"react",
"create-react-app",
"cli",
"hook",
"rollup",
"babel",
"publish"
],
"dependencies": {
"chalk": "2.4.1",
"commander": "^2.16.0",
"conf": "^2.0.0",
"cp-file": "^6.0.0",
"execa": "^0.10.0",
"git-config-path": "^1.0.1",
"github-username": "^4.1.0",
"globby": "^8.0.1",
"handlebars": "^4.0.11",
"inquirer": "^6.0.0",
"make-dir": "^1.3.0",
"node-compat-require": "^1.0.5",
"ora": "^3.0.0",
"p-each-series": "^1.0.0",
"parse-git-config": "^2.0.2",
"validate-npm-package-name": "^3.0.0",
"which": "^1.3.1"
},
"devDependencies": {
"ava": "^0.25.0",
"rmfr": "^2.0.0",
"standard": "^11.0.1"
}
}