-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
50 lines (50 loc) · 1.15 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": "eslint-plugin-workspaces",
"version": "0.10.1",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"monorepo",
"packages",
"workspaces",
"yarn",
"lerna",
"npm",
"pnpm",
"bolt"
],
"repository": {
"type": "git",
"url": "git+https://github.com/joshuajaco/eslint-plugin-workspaces.git"
},
"license": "MIT",
"exports": "./lib/index.js",
"main": "lib/index.js",
"files": [
"lib/",
"CHANGELOG.md"
],
"scripts": {
"format": "prettier . --write",
"format:check": "prettier . --check",
"lint": "eslint . --ignore-path=.gitignore --max-warnings=0",
"lint:fix": "npm run lint -- --fix",
"test": "nyc -r=lcov -r=text mocha tests --recursive --file tests/setup.js"
},
"dependencies": {
"find-workspaces": "^0.3.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-plugin": "^6.2.0",
"eslint-plugin-node": "^11.1.0",
"mocha": "^10.7.0",
"nyc": "^17.0.0",
"prettier": "^3.3.3",
"sinon": "^18.0.0"
},
"packageManager": "[email protected]"
}