-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.13 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
{
"name": "@labset-eslint/eslint-plugin",
"version": "1.3.0",
"description": "collection of eslint rules needed to ensure ts open-source packages structure is consistent",
"repository": "[email protected]:viqueen/eslint-plugin.git",
"author": "Hasnae R. <>",
"license": "Apache-2.0",
"private": false,
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"postbuild": "node postbuild.js",
"test": "jest",
"test:watch": "jest --watchAll",
"format:check": "prettier --check .",
"format": "prettier --check --write .",
"lint": "eslint src/ --ext .ts,.tsx,.js"
},
"devDependencies": {
"@labset-eslint/eslint-plugin": "^1.3.0",
"@types/eslint": "^8.56.10",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.7",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "^8.41.0",
"eslint-plugin-import": "^2.29.1",
"fs-directory": "^1.0.0",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
}
}