-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 866 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
{
"name": "setup-cli",
"author": {
"name": "C0RR1T"
},
"homepage": "https://github.com/C0RR1T/setup-cli",
"bugs": {
"url": "https://github.com/C0RR1T/setup-cli/issues"
},
"description": "Inserts your prettier and tsconfig settings into your projects.",
"keywords": [
"prettier",
"typescript",
"setup",
"cli"
],
"readme": "./README.md",
"version": "3.2.0",
"files": [
"./README.md"
],
"main": "/index.js",
"license": "MIT",
"dependencies": {
"argparse": "^2.0.1"
},
"prettier": {
"tabWidth": 4,
"printWidth": 80,
"semi": true,
"quoteProps": "consistent",
"bracketSpacing": true,
"bracketSameLine": true,
"singleQuote": true,
"jsxSingleQuote": true,
"jsxBracketSameLine": true,
"arrowParens": "avoid"
},
"devDependencies": {
"prettier": "^2.5.1"
}
}