-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.63 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@b12k/mvm",
"version": "0.0.10",
"description": "Monorepo versions manager",
"publishConfig": {
"access": "public"
},
"bin": {
"mvm-lock": "dist/cli-lock.js",
"mvm-skip": "dist/cli-skip.js",
"mvm-update": "dist/cli-update.js"
},
"main": "dist/mvm.js",
"types": "dist/mvm.d.ts",
"keywords": [],
"author": "Bogdan Kolesnyk",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/b12k/mvm.git"
},
"homepage": "https://github.com/b12k/mvm",
"bugs": {
"url": "https://github.com/b12k/mvm/issues"
},
"scripts": {
"dev": "pnpm clean && run-p _dev:*",
"_dev:types": "pnpm _build:types && chokidar \"./dist/**/*.js\" -c \"pnpm _build:types\"",
"_dev:scripts": "pnpm _build:scripts --watch",
"lint": "run-p _lint:*",
"_lint:types": "tsc --noEmit",
"_lint:scripts": "eslint ./src/**/*.ts",
"_lint:codestyle": "pnpm prettier . --check",
"build": "pnpm clean && run-p _build:*",
"_build:types": "tsc --emitDeclarationOnly",
"_build:scripts": "swc ./src -d ./dist",
"clean": "shx rm -rf ./dist",
"prepare": "husky install",
"release": "release-it --ci",
"husky:pre-commit": "run-p _husky:pre-commit:*",
"_husky:pre-commit:typecheck": "pnpm _lint:types",
"_husky:pre-commit:lintstaged": "lint-staged"
},
"devDependencies": {
"@commitlint/cli": "17.4.4",
"@commitlint/config-conventional": "17.4.4",
"@release-it/conventional-changelog": "5.1.1",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.36",
"@swc/helpers": "0.4.14",
"@types/fs-extra": "11.0.1",
"@types/glob": "8.0.1",
"@types/node": "18.14.0",
"@types/semver": "7.3.13",
"@typescript-eslint/eslint-plugin": "5.53.0",
"@typescript-eslint/parser": "5.53.0",
"chokidar": "3.5.3",
"chokidar-cli": "3.0.0",
"eslint": "8.34.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.6.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-unicorn": "45.0.2",
"eslint-plugin-unused-imports": "2.0.0",
"husky": "8.0.3",
"lint-staged": "13.1.2",
"npm-run-all": "4.1.5",
"prettier": "2.8.4",
"release-it": "15.6.0",
"shx": "0.3.4",
"typescript": "4.9.5"
},
"dependencies": {
"clean-semver": "2.1.0",
"commander": "10.0.0",
"fs-extra": "11.1.0",
"glob": "8.1.0",
"semver": "7.3.8"
}
}