-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
67 lines (67 loc) · 1.62 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
{
"name": "@quramy/eslint-plugin-tutorial",
"version": "1.0.0",
"description": "A tutorial repository to create your first eslint rule",
"main": "lib/index.js",
"scripts": {
"start-tutorial": "rimraf \"src/rules/**/*\" && rimraf src/index.ts && npm un @typescript-eslint/parser",
"clean": "rimraf lib",
"prebuild": "rimraf node_modules/@types/eslint/node_modules/@types/estree",
"build": "tsc",
"prettier": "prettier \"*.{js,json,yml,yaml,md}\" \"src/**/*\" \"guide/**/*\"",
"format": "yarn prettier --write",
"format:check": "yarn prettier --check",
"test": "jest",
"prepublish": "npm run clean && npm run build"
},
"files": [
"README.md",
"package.json",
"lib"
],
"keywords": [
"eslint",
"typescript",
"example"
],
"author": "Quramy",
"license": "MIT",
"devDependencies": {
"@types/eslint": "8.44.9",
"@types/estree": "1.0.5",
"@types/node": "20.12.7",
"@typescript-eslint/parser": "6.12.0",
"eslint": "8.55.0",
"husky": "8.0.3",
"jest": "29.7.0",
"prettier": "2.8.8",
"pretty-quick": "3.1.3",
"rimraf": "5.0.5",
"ts-jest": "29.1.1",
"typescript": "5.3.3"
},
"peerDependencies": {
"eslint": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
},
"jest": {
"globals": {
"ts-jest": {
"diagnostics": false
}
},
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(src/.*\\.test)\\.ts$",
"testPathIgnorePatterns": [
"/node_modules/",
"\\.d\\.ts$",
"lib/.*"
],
"moduleFileExtensions": [
"js",
"ts",
"json"
]
}
}