-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
88 lines (88 loc) · 1.68 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
82
83
84
85
86
87
88
{
"name": "prettier-init",
"version": "1.3.0",
"description": "Small CLI for generating .prettierc files",
"homepage": "https://github.com/gabrielperales/prettier-init",
"author": {
"name": "Gabriel Perales",
"email": "[email protected]",
"url": "https://github.com/gabrielperales"
},
"files": [
"bin",
"lib"
],
"main": "bin/index.js",
"keywords": [
"cli",
"prettier",
"prettierrc"
],
"devDependencies": {
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.9.0",
"jsonschema": "^1.2.4"
},
"engines": {
"npm": ">= 4.0.0",
"node": ">= 8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabrielperales/prettier-init"
},
"bugs": {
"url": "https://github.com/gabrielperales/prettier-init/issues"
},
"bin": {
"prettier-init": "bin/index.js"
},
"scripts": {
"test": "jest",
"prepublishOnly": "npm audit --audit-level high",
"precommit": "lint-staged"
},
"dependencies": {
"inquirer": "^7.0.0",
"js-yaml": "^3.13.1"
},
"preferGlobal": true,
"license": "MIT",
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": [
"xo",
"prettier"
],
"env": {
"jest": true,
"node": true
},
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"printWidth": 90
}
]
},
"plugins": [
"prettier"
]
},
"jest": {
"testEnvironment": "node"
}
}