-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
37 lines (37 loc) · 1.14 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
{
"name": "eslint-plugin-strict-null-checks",
"version": "0.1.3",
"description": "Eslint plugin that aims to reproduce strictNullCheck from tsconfig for easier migration",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"build": "tsc && cp src/index.js dist/ && cp package.json dist/",
"build:win": "pwsh.exe -Command \"npx tsc && copy src/index.js dist/index.js && copy package.json dist/package.json\"",
"prepublishOnly": "yarn test && yarn build:win"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/experimental-utils": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"requireindex": "^1.2.0"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"eslint": "^8.10.0",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"typescript": "4.5.5"
},
"peerDependencies": {
"typescript": ">=3.9.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JaroslawPokropinski/eslint-plugin-strict-null-check.git"
},
"author": {
"name": "Jarosław Pokropiński",
"email": "jarek.pokropinski@gmail.com"
},
"license": "MIT"
}