-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.5 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
{
"name": "eslint-rule-snapshot-testing",
"version": "0.0.0",
"description": "Jest snapshot testing for ESLint rules with fixture support",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc --watch --preserveWatchOutput",
"lint": "prettier . --check",
"format": "prettier . --write",
"test": "jest",
"switch:6": "yarn remove eslint --ignore-engines && yarn add eslint@^6.0.0 -D --ignore-engines",
"switch:7": "yarn remove eslint --ignore-engines && yarn add eslint@^7.0.0 -D --ignore-engines",
"switch:8": "yarn remove eslint --ignore-engines && yarn add eslint@^8.0.0 -D --ignore-engines"
},
"repository": {
"type": "git",
"url": "[email protected]:jwbay/eslint-snapshot-testing.git"
},
"keywords": [
"jest",
"eslint",
"rules",
"snapshot",
"test",
"fixture"
],
"author": "[email protected]",
"license": "MIT",
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0",
"jest": "*"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@types/eslint": "^7.28.0",
"@types/estree": "^0.0.50",
"@types/jest": "^27.0.0",
"@types/node": "^16.6.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^8.0.0",
"jest": "^27.0.0",
"prettier": "^2.4.0",
"semantic-release": "^19.0.0",
"typescript": "^4.4.0"
},
"dependencies": {
"comment-parser": "^1.2.4"
}
}