-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 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
{
"name": "eslint-plugin-typescript-compat",
"version": "1.0.2",
"description": "ESLint rule for browser compatibility of your TypeScript code",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "azu <azuciao@gmail.com>",
"main": "./dist/src/index.js",
"files": [
"dist/src"
],
"scripts": {
"build": "tsc",
"test": "mocha \"tests/**/*.ts\"",
"prepare": "git config --local core.hooksPath .githooks",
"prepublish": "npm run --if-present build",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\""
},
"dependencies": {
"@mdn/browser-compat-data": "^5.2.43",
"@typescript-eslint/experimental-utils": "^5.10.1",
"browserslist": "^4.9.1",
"semver": "^7.1.3"
},
"peerDependencies": {
"typescript": "^3.9.7 || ^4.0.0 || ^5.0.0"
},
"devDependencies": {
"@types/browserslist": "^4.8.0",
"@types/chai": "^4.2.9",
"@types/eslint": "^8.4.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.3",
"@types/semver": "^7.3.2",
"@typescript-eslint/parser": "^5.10.1",
"chai": "^4.2.0",
"eslint": "^8.7.0",
"lint-staged": "^13.2.0",
"mocha": "^10.2.0",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"typescript": "~5.0.2"
},
"license": "MIT",
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
}
}