-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1000 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 1000 Bytes
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
{
"name": "mufan-code-packages",
"private": true,
"license": "MIT",
"author": "Chengdu Mufan Technology Co., Ltd.",
"type": "module",
"scripts": {
"3": "npm install && npm dedupe && npm install",
"build": "rimraf packages/eslint-plugin/bld && tsc --build",
"lint": "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": "npm run lint-prettier && npm run build && npm run lint && npm run bare-test",
"eslint-plugin": "npm run --workspace @mufan/eslint-plugin"
},
"workspaces": [
"packages/eslint-plugin"
],
"devDependencies": {
"@mufan/eslint-plugin": "^0.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"cross-env": "^10.1.0",
"eslint": "^10.2.0",
"jest": "^30.3.0",
"lerna": "^9.0.7",
"prettier": "^3.8.2",
"rimraf": "^6.1.3",
"typescript": "^6.0.2"
}
}