-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 1.66 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"type": "module",
"name": "fast-repo",
"version": "1.4.0",
"description": "Create and configure github repository in seconds",
"main": "lib/bin.js",
"exports": "./lib/bin.js",
"bin": "lib/bin.js",
"files": [
"lib/**/*"
],
"author": "luctst",
"license": "MIT",
"np": {
"yarn": false
},
"repository": {
"type": "git",
"url": "https://www.github.com/luctst/fast-repo"
},
"bugs": {
"url": "https://www.github.com/luctst/fast-repo/issues"
},
"homepage": "https://www.github.com/luctst/fast-repo",
"engines": {
"node": ">= 10.0.0"
},
"eslintIgnore": [
"lib/build/"
],
"ava": {
"cache": true
},
"keywords": [
"cli",
"bin",
"util",
"nodejs",
"command",
"line",
"github",
"repository",
"create",
"delete",
"config",
"javascript",
"flags",
"input",
"output",
"console"
],
"scripts": {
"test": "ava --verbose ./test/*.js",
"test:watch": "ava --watch --verbose --fail-fast ./test/*.js",
"lint": "npx eslint --cache './lib/**/*.js'",
"lint:watch": "esw -w --clear --color --cache './lib/**/*.js'",
"lint:fix": "npx eslint --fix './lib/**/*.js'",
"style": "prettier -c './lib/**/*.js'",
"style:fix": "prettier --c --write './lib/**/*.js'"
},
"devDependencies": {
"ava": "^3.15.0",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-watch": "^7.0.0",
"prettier": "^2.3.2"
},
"dependencies": {
"axios": "^0.21.1",
"chalk": "^4.1.1",
"execa": "^4.1.0",
"inquirer": "^8.1.1",
"listr": "^0.14.3",
"meow": "^10.0.1",
"redent": "^4.0.0",
"trim-newlines": "^4.0.2"
}
}