-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.04 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
{
"name": "eslint-plugin-ternary",
"version": "2.0.0",
"description": "Catch logical and conditional errors inside of ternary conditions.",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"ternary",
"nested-ternary"
],
"author": "Che Fisher",
"main": "lib/index.js",
"repository": "grayedfox/eslint-plugin-ternary",
"scripts": {
"test": "mocha tests --recursive",
"test:cli": "mocha",
"lint": "eslint .",
"lint:cli": "eslint",
"lint:fix": "eslint --fix ."
},
"dependencies": {},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-plugin": "^3.5.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.1.1",
"prettier": "^2.3.2"
},
"peerDependencies": {
"eslint": ">=0.8.0"
},
"engines": {
"node": ">=6"
},
"license": "ISC",
"prettier": {
"semi": false,
"singleQuote": true,
"proseWrap": "always",
"printWidth": 100,
"trailingComma": "none"
}
}