-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.08 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
{
"name": "eslint-plugin-jsx-falsy",
"version": "1.0.0",
"description": "Avoid accidentally rendering falsy values in your JSX.",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"typescript",
"react",
"react-native"
],
"author": "Jeremy Deutsch",
"repository": "https://github.com/jeremy-deutsch/eslint-plugin-jsx-falsy",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"build": "tsc -p tsconfig.prod.json",
"prepublish": "yarn test && yarn build"
},
"dependencies": {
"@typescript-eslint/experimental-utils": "2.16.0",
"tsutils": "^3.17.1"
},
"devDependencies": {
"@types/jest": "^24.0.25",
"@types/node": "^13.1.6",
"@typescript-eslint/parser": "^2.16.0",
"eslint": "^6.8.0",
"jest": "^24.9.0",
"mocha": "^3.1.2",
"prettier": "^1.19.1",
"ts-jest": "^24.3.0",
"typescript": "^3.7.4"
},
"peerDependencies": {
"@typescript-eslint/parser": "^2.0.0",
"eslint": "^5.0.0 || ^6.0.0",
"typescript": "*"
},
"engines": {
"node": ">=0.10.0"
},
"license": "ISC"
}