forked from transitive-bullshit/create-react-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.3 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
54
55
56
57
58
59
60
61
62
{
"name": "create-react-library",
"version": "3.1.1",
"description": "CLI for easily bootstrapping modern react libraries",
"repository": "transitive-bullshit/create-react-library",
"author": "Travis Fischer <[email protected]>",
"main": "index.js",
"license": "MIT",
"engines": {
"node": ">=10"
},
"bin": {
"create-react-library": "index.js"
},
"scripts": {
"test": "ava -v && standard *.js lib/*.js"
},
"keywords": [
"react",
"preact",
"library",
"module",
"package",
"create-react-app",
"cli",
"component",
"rollup",
"babel",
"publish"
],
"dependencies": {
"chalk": "^3.0.0",
"commander": "^5.0.0",
"conf": "^2.2.0",
"cp-file": "^6.0.0",
"execa": "^4.0.0",
"git-config-path": "^2.0.0",
"github-username": "^5.0.1",
"globby": "^11.0.0",
"handlebars": "^4.7.4",
"inquirer": "^7.1.0",
"make-dir": "^3.0.2",
"ora": "^4.0.3",
"p-each-series": "^2.1.0",
"parse-git-config": "^3.0.0",
"validate-npm-package-name": "^3.0.0",
"which": "^2.0.2"
},
"devDependencies": {
"ava": "^3.5.2",
"rmfr": "^2.0.0",
"standard": "^14.3.3"
},
"ava": {
"failFast": true,
"timeout": "10m",
"files": [
"index.test.js",
"lib/**/*.test.js"
]
}
}