-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 997 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
45
46
47
48
49
50
51
52
{
"name": "booom",
"version": "1.0.1",
"description": "A simple CLI to scaffold some files or folder structures to kickstart new projects",
"main": "index.js",
"bin": {
"booom": "cli.js",
"bo": "cli.js"
},
"scripts": {
"test": "xo && ava"
},
"xo": {
"space": true
},
"keywords": [
"cli-app",
"cli",
"scaffold",
"tool",
"boilerplate"
],
"engines": {
"node": ">=6"
},
"files": [
"lib",
"cli.js",
"index.js"
],
"license": "MIT",
"author": "André Ruffert <andreruffert.com>",
"homepage": "https://github.com/andreruffert/booom",
"repository": {
"type": "git",
"url": "https://github.com/andreruffert/booom.git"
},
"bugs": {
"url": "https://github.com/andreruffert/booom/issues"
},
"dependencies": {
"got": "^6.3.0",
"is-url": "^1.2.1",
"meow": "^3.7.0",
"unzip": "^0.1.11"
},
"devDependencies": {
"ava": "^0.15.1",
"execa": "^0.4.0",
"xo": "^0.15.1"
}
}