-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.21 KB
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
{
"name": "eslint-plugin-no-lookahead-lookbehind-regexp",
"version": "0.4.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/JonasBa/eslint-plugin-no-lookahead-lookbehind-regexp.git"
},
"author": "JonasBa",
"license": "MIT",
"dependencies": {
"browserslist": "^4.24.2",
"caniuse-lite": "^1.0.30001669"
},
"scripts": {
"benchmark": "ts-node benchmark/benchmark.ts",
"build": "rm -rf ./lib && yarn tsc",
"tsc": "tsc",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/benchmark": "^2.1.1",
"@types/browserslist": "^4.15.0",
"@types/caniuse-lite": "^1.0.5",
"@types/eslint": "^9.6.1",
"@types/jest": "^29.5.13",
"@typescript-eslint/parser": "^5.4.0",
"benchmark": "^2.1.4",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-plugin": "^6.2.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^2.5.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.4.0",
"typescript": "^5.6.3"
},
"peerDependencies": {
"eslint": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0"
}
}