-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.59 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
89
90
91
92
93
{
"name": "eslint-plugin-safe-jsx",
"description": "An ESLint plugin that enforces explicit boolean conversion before using && operator with JSX in React and React Native.",
"keywords": [
"jsx",
"react",
"react-native",
"eslint",
"eslint-plugin",
"boolean",
"conversion",
"javascript",
"coding standards",
"linting",
"code quality"
],
"version": "1.1.1",
"main": "lib/index.js",
"scripts": {
"prepack": "npmignore --auto --commentLines=autogenerated && npm run build",
"build": "rimraf lib && tsc --project . --outDir lib",
"lint:fix": "npm run lint -- --fix",
"lint": "eslint --ext=js,mjs,cjs,ts,tsx .",
"prepublish": "not-in-publish || npm run prepublishOnly",
"prepublishOnly": "safe-publish-latest && npm run lint && npm run jest",
"jest": "jest --coverage src/**/*.test.tsx",
"posttest": "aud --production",
"version": "auto-changelog && git add CHANGELOG.md",
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
},
"author": "Gabriel Taveira",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/experimental-utils": "^5.59.5",
"@typescript-eslint/parser": "^6.0.0",
"aud": "^2.0.2",
"auto-changelog": "^2.4.0",
"eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-doc-generator": "^1.4.1",
"eslint-plugin-eslint-plugin": "^4.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"npmignore": "^0.3.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"safe-publish-latest": "^2.0.0",
"semver": "^6.3.0",
"ts-jest": "^29.1.0",
"tsc": "^2.0.4",
"typescript": "^5.0.4"
},
"peerDependencies": {
"eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8"
},
"engines": {
"node": ">=4.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"coverageReporters": [
"lcov",
"json",
"html"
],
"coverageDirectory": "coverage",
"roots": [
"src"
]
},
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "keepachangelog",
"unreleased": false,
"commitLimit": false,
"backfillLimit": false,
"hideCredit": true,
"startingVersion": "6.6.2"
},
"publishConfig": {
"ignore": [
"!lib",
".github/workflows",
"/src",
"/reports",
"CONTRIBUTING.md"
]
}
}