-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.18 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
{
"name": "create-inferno-library",
"version": "1.0.0",
"description": "CLI for easily bootstrapping modern inferno libraries",
"repository": "tbjgolden/create-inferno-library",
"author": "Tom Golden <[email protected]>",
"main": "index.js",
"license": "MIT",
"reveal": true,
"bin": {
"create-inferno-library": "index.js"
},
"scripts": {
"test": "ava -v && standard *.js lib/*.js"
},
"engines": {
"node": ">=8",
"npm": ">=5"
},
"keywords": [
"inferno",
"preact",
"library",
"module",
"create-inferno-app",
"cli",
"component",
"rollup",
"babel",
"publish"
],
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.19.0",
"conf": "^2.2.0",
"cp-file": "^6.0.0",
"execa": "^1.0.0",
"git-config-path": "^2.0.0",
"github-username": "^4.1.0",
"globby": "^9.0.0",
"handlebars": "^4.1.0",
"inquirer": "^6.2.2",
"make-dir": "^2.0.0",
"ora": "^3.1.0",
"p-each-series": "^1.0.0",
"parse-git-config": "^3.0.0",
"validate-npm-package-name": "^3.0.0",
"which": "^1.3.1"
},
"devDependencies": {
"ava": "^1.2.1",
"rmfr": "^2.0.0",
"standard": "^12.0.1"
}
}