-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
61 lines (61 loc) · 1.57 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
55
56
57
58
59
60
61
{
"name": "mpflow",
"version": "0.0.1",
"description": "enhanced cli tool for mp deveopers",
"main": "index.js",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"init": "pnpm i",
"build": "pnpm -r run build",
"release": "npm run build && pnpm publish"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "http://github.com/wechat-miniprogram/mpflow.git"
},
"author": "wechat-miniprogram",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.4",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"babel-jest": "^29.7.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"glob": "^7.2.3",
"husky": "^4.3.8",
"jest": "^29.7.0",
"lint-staged": "^10.5.4",
"mkdirp": "^1.0.4",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,ts,md,html,css,json}": "prettier --write",
"*.{js,ts}": "eslint --fix"
}
}