forked from lerna-lite/lerna-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.83 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
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "lerna-lite",
"author": "Ghislain B.",
"license": "MIT",
"private": true,
"scripts": {
"clean": "rimraf packages/*/dist",
"clean:tarball": "rimraf packages/**/*.tgz",
"build": "pnpm clean && pnpm lint && pnpm -r --stream build",
"info-cmd": "lerna info",
"init-cmd": "lerna init --independent --exact --use-workspaces",
"changed-cmd": "lerna changed --all",
"diff-cmd": "lerna diff",
"list-cmd": "lerna list --all",
"exec-win": "lerna exec --scope {@lerna-lite/cli,@lerna-lite/core} -- echo hello from package: %LERNA_PACKAGE_NAME%",
"exec-unix": "lerna exec -- echo hello from package: ${LERNA_PACKAGE_NAME}",
"pack-tarball": "lerna run pack-tarball",
"pack-tarball:nx": "lerna run pack-tarball --stream --use-nx",
"preview:publish-alpha-dry-run": "lerna publish --dry-run --exact --include-merged-tags --preid alpha --dist-tag next prerelease",
"preview:publish": "lerna publish from-package --dry-run",
"preview:version": "lerna version --dry-run",
"preview:roll-new-release": "pnpm build && pnpm new-version --dry-run && pnpm new-publish --dry-run",
"new-version": "lerna version",
"new-publish": "lerna publish from-package",
"roll-new-release": "pnpm build && pnpm new-version && pnpm new-publish",
"format:check": "prettier --check **/*.{js,ts,yml,json}",
"format:write": "prettier --write **/*.{js,ts,yml,json}",
"ci:lint": "eslint . -c .eslintrc.json --no-eslintrc --ignore-path .gitignore",
"lint": "eslint . -c .eslintrc.json --no-eslintrc --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint",
"jest": "jest --runInBand --coverage=true --config ./jest/jest.config.js",
"jest:ci": "jest --maxWorkers=2 --coverage=true --ci --config ./jest/jest.config.js",
"jest:watch": "jest --watch --coverage=false --config ./jest/jest.config.js",
"outdated:ws": "pnpm -r --stream outdated"
},
"homepage": "https://github.com/ghiscoding/lerna-lite",
"repository": {
"type": "git",
"url": "https://github.com/ghiscoding/lerna-lite.git"
},
"bugs": {
"url": "https://github.com/ghiscoding/lerna-lite/issues"
},
"engines": {
"node": ">=14.17.0",
"npm": ">=8.0.0",
"pnpm": "7"
},
"devDependencies": {
"@jest/types": "^29.2.1",
"@lerna-lite/changed": "workspace:*",
"@lerna-lite/cli": "workspace:*",
"@lerna-lite/core": "workspace:*",
"@lerna-lite/diff": "workspace:*",
"@lerna-lite/exec": "workspace:*",
"@lerna-lite/info": "workspace:*",
"@lerna-lite/list": "workspace:*",
"@lerna-lite/listable": "workspace:*",
"@lerna-lite/optional-cmd-common": "workspace:*",
"@lerna-lite/publish": "workspace:*",
"@lerna-lite/run": "workspace:*",
"@lerna-lite/version": "workspace:*",
"@lerna-test/helpers": "link:helpers",
"@types/jest": "^29.2.1",
"@types/node": "^18.11.9",
"@types/npmlog": "^4.1.4",
"@types/yargs": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"execa": "^5.1.1",
"file-url": "^3.0.0",
"find-up": "^5.0.0",
"fs-extra": "^10.1.0",
"globby": "^11.1.0",
"jest": "^29.2.2",
"jest-cli": "^29.2.2",
"jest-extended": "^3.1.0",
"load-json-file": "^6.2.0",
"normalize-newline": "^3.0.0",
"normalize-path": "^3.0.0",
"npmlog": "^7.0.1",
"nx": "15.0.8",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"semver": "^7.3.8",
"tacks": "^1.2.6",
"tempy": "^1.0.1",
"ts-jest": "^29.0.3",
"tsm": "^2.2.2",
"typescript": "^4.8.4",
"write-json-file": "^4.3.0"
}
}