-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.07 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
{
"name": "mufan-code-packages",
"private": true,
"license": "MIT",
"author": "Chengdu Mufan Technology Co., Ltd.",
"type": "module",
"scripts": {
"3": "pnpm install && pnpm dedupe && pnpm install",
"build": "rimraf packages/eslint-plugin/bld && tsc --build",
"lint": "eslint --no-error-on-unmatched-pattern --report-unused-disable-directives . && run-in-every eslint-project --parallel --echo -- eslint --no-error-on-unmatched-pattern --report-unused-disable-directives .",
"lint-prettier": "prettier --check .",
"bare-test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test": "pnpm lint-prettier && pnpm build && pnpm lint && pnpm bare-test",
"eslint-plugin": "pnpm --filter @mufan/eslint-plugin"
},
"devDependencies": {
"@mufan/eslint-plugin": "workspace:*",
"@types/jest": "^29.5.8",
"@types/node": "^20.8.6",
"cross-env": "^7.0.3",
"eslint": "^8.53.0",
"jest": "^29.7.0",
"lerna": "^7.3.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"run-in-every": "^0.2.0",
"typescript": "^5.2.2"
}
}