-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.72 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
54
{
"name": "eslint-plugin-paths",
"description": "A plugin for ESLint, to force use paths aliases from tsconfig",
"version": "1.1.0",
"license": "Apache-2.0",
"keywords": ["eslint", "eslintplugin"],
"author": "Robert Vitonsky <[email protected]> (https://vitonsky.net)",
"homepage": "https://github.com/vitonsky/eslint-plugin-paths#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vitonsky/eslint-plugin-paths.git"
},
"bugs": {
"url": "https://github.com/vitonsky/eslint-plugin-paths/issues"
},
"scripts": {
"test": "jest",
"test-fast": "TEST_FAST=true jest",
"build": "rm -rf dist && rollup -c ./rollup.config.mjs",
"release": "npm run build && cd dist && npm publish",
"prettify": "prettier --write \"{*,**/*}.{ts,tsx,js,jsx}\" && eslint --fix \"{*,**/*}.{ts,tsx,js,jsx}\"",
"packages:upgrade": "npm-check-updates -u",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/eslint": "^8.56.7",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-spellcheck": "^0.0.20",
"eslint-plugin-unused-imports": "^4.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"npm-check-updates": "^16.14.18",
"prettier": "^3.2.5",
"rollup": "^4.14.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-dts": "^6.1.1",
"ts-jest": "^29.1.2",
"tslib": "^2.6.2",
"typescript": "^5.4.3"
},
"dependencies": {
"comment-json": "^4.2.3"
}
}