-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 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
{
"name": "eslint-plugin-jsx-conditional",
"description": "Enforces a consistent use of conditional expressions in jsx",
"version": "2.0.2",
"author": "Luis Adame <[email protected]>",
"main": "index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/luisadame/eslint-plugin-jsx-conditional.git"
},
"bugs": {
"url": "https://github.com/luisadame/eslint-plugin-jsx-conditional/issues"
},
"homepage": "https://github.com/luisadame/eslint-plugin-jsx-conditional",
"keywords": [
"eslint",
"conditional expression",
"logical expression",
"code style",
"standard"
],
"scripts": {
"test": "ava tests/lib/rules/*.js",
"check-coverage": "c8 yarn test",
"report-coverage": "c8 report --reporter text-lcov > coverage.lcov"
},
"devDependencies": {
"ava": "^5.2.0",
"c8": "^7.13.0",
"common-tags": "^1.8.2",
"eslint": "^8.35.0",
"eslint-ava-rule-tester": "^4.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^2.8.4"
}
}