forked from luctst/get-readme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.48 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": "get-good-readme",
"version": "2.1.0",
"description": "CLI tool to generate an esthetic README file 🔖🔖",
"main": "lib/cli.js",
"bin": "./lib/cli.js",
"files": [
"lib/"
],
"engines": {
"node": ">= 10.0.0"
},
"eslintIgnore": [
"./lib/build/",
"./lib/template/"
],
"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'"
},
"repository": {
"type": "git",
"url": "https://www.github.com/luctst/get-readme"
},
"keywords": [
"cli",
"cli-tool",
"generate-readme",
"readme",
"readme-files",
"readme-templates",
"templates",
"cli-template",
"templates",
"get-good-readme"
],
"author": "LucTst <[email protected]> (https://www.lucas-tostee.com)",
"license": "MIT",
"bugs": {
"url": "https://www.github.com/luctst/get-readme/issues"
},
"homepage": "https://www.github.com/luctst/get-readme",
"devDependencies": {
"ava": "^2.4.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-watch": "^5.1.2",
"prettier": "^1.19.1"
},
"dependencies": {
"chalk": "^3.0.0",
"meow": "^6.0.0"
}
}