-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.42 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
{
"name": "@waltari/eslint-plugin-ban-realm-spread",
"version": "1.0.0",
"description": "ESlint rule to ban spreading Realm objects",
"main": "dist/index.js",
"files": [
"dist/*.js",
"dist/**/*.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Waltari10/eslint-plugin-ban-realm-spread.git"
},
"bugs": {
"url": "https://github.com/Waltari10/eslint-plugin-ban-realm-spread/issues"
},
"homepage": "https://github.com/Waltari10/eslint-plugin-ban-realm-spread#readme",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint .",
"build": "tsc -b tsconfig.json",
"clean": "tsc -b tsconfig.json --clean",
"postclean": "rimraf dist",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"author": "Valtteri Laine",
"license": "ISC",
"peerDependencies": {
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.29",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"@typescript-eslint/utils": "^5.21.0",
"eslint": "^8.14.0",
"eslint-plugin-eslint-plugin": "^4.1.0",
"eslint-plugin-node": "^11.1.0",
"jest": "^28.0.2",
"typescript": "^4.6.3"
},
"engines": {
"node": ">=12.0.0"
}
}