-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.23 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
{
"name": "eslint-plugin-typescript-heck",
"version": "1.2.1",
"description": "Some extended eslint rules for typescript",
"main": "dist/index.js",
"scripts": {
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"update": "npx npm-check-updates -i",
"lint": "eslint --ext .ts src/",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"semantic-release": "semantic-release"
},
"author": "atheck",
"license": "MIT",
"dependencies": {
"@types/eslint": "8.4.6",
"@typescript-eslint/eslint-plugin": "5.40.0",
"@typescript-eslint/experimental-utils": "5.40.0",
"@typescript-eslint/parser": "5.40.0"
},
"devDependencies": {
"@babel/cli": "7.19.3",
"@babel/core": "7.19.3",
"@babel/preset-env": "7.19.4",
"@babel/preset-typescript": "7.18.6",
"@types/jest": "29.1.2",
"eslint": "8.25.0",
"eslint-config-heck": "1.25.0",
"jest": "29.1.2",
"semantic-release": "19.0.5",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"keywords": [
"eslint",
"typescript",
"rules"
]
}