-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.46 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
{
"name": "eslint-plugin-better-dates",
"version": "0.0.3",
"description": "ESLint plugin to prevent Date-related bugs.",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"typescript"
],
"engines": {
"node": "^10.12.0 || >=12.0.0"
},
"files": [
"dist",
"docs",
"package.json",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/chdsbd/eslint-plugin-better-dates.git"
},
"bugs": {
"url": "https://github.com/chdsbd/eslint-plugin-better-dates/issues"
},
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -b tsconfig.json",
"clean": "tsc -b tsconfig.json --clean",
"format": "prettier --write \"./**/*.{ts,js,json,md}\"",
"lint": "eslint . --ext .js,.ts --ignore-path ../../.eslintignore",
"test": "jest --coverage",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@typescript-eslint/experimental-utils": "^4.22.0"
},
"devDependencies": {
"@types/node": "^14.14.41",
"@types/prettier": "*",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"jest": "^26.6.3",
"prettier": "*",
"ts-jest": "^26.5.5",
"typescript": "*"
},
"peerDependencies": {
"@typescript-eslint/parser": "^4.0.0",
"eslint": "^5.0.0 || ^6.0.0 || ^7.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
}
}