-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
114 lines (114 loc) · 2.85 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "lazyrepo",
"version": "0.0.0-alpha.27",
"description": "lazyrepo is a caching task runner for npm/yarn/pnpm monorepos",
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ds300/lazyrepo.git"
},
"type": "module",
"main": "index.js",
"scripts": {
"test": "rimraf .test && jest",
"update-snapshots": "jest -u",
"clean": "rm -rf node_modules && pnpm install",
"format": "prettier --write .",
"format:check": "prettier --list-different .",
"lint": "eslint -f compact \"**/*.{js,ts}\"",
"pack-test-version": "node scripts/pack-test-version.js",
"prepare": "husky install"
},
"packageManager": "[email protected]",
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
],
"*.{js,ts,json,yml,yaml,md}": [
"prettier --write"
]
},
"files": [
"index.js",
"index.d.ts",
"bin.js",
"src",
"assets",
"LICENSE"
],
"keywords": [],
"author": "David Sheldrick",
"bin": {
"lazy": "./bin.js"
},
"license": "MIT",
"types": "index.d.ts",
"dependencies": {
"@sindresorhus/slugify": "^2.2.0",
"cac": "^6.7.14",
"ci-info": "^3.8.0",
"cross-spawn": "^7.0.3",
"esbuild": "^0.17.15",
"fast-json-stable-stringify": "^2.1.0",
"micromatch": "^4.0.5",
"picocolors": "^1.0.0",
"slash": "^5.0.1",
"slice-ansi": "^6.0.0",
"source-map-support": "^0.5.21",
"strip-ansi": "^7.0.1",
"ts-dedent": "^2.2.0",
"yaml": "^2.2.1",
"zod": "^3.21.4",
"zod-validation-error": "^1.3.0"
},
"devDependencies": {
"@auto-it/core": "^10.44.0",
"@cloudflare/workers-types": "^4.20230404.0",
"@octokit/rest": "^19.0.7",
"@octokit/webhooks-types": "^6.11.0",
"@swc/core": "^1.3.51",
"@swc/jest": "^0.2.26",
"@types/cross-spawn": "^6.0.2",
"@types/eslint": "^8.37.0",
"@types/jest": "^29.5.0",
"@types/micromatch": "^4.0.2",
"@types/node": "^18.15.11",
"@types/semver": "^7.3.13",
"@types/slice-ansi": "^5.0.0",
"@types/source-map-support": "^0.5.6",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"auto": "^10.44.0",
"eslint": "^8.38.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-n": "^15.7.0",
"husky": "^8.0.0",
"immer": "^10.0.1",
"jest": "^29.5.0",
"jest-resolve": "^29.5.0",
"lint-staged": "^13.2.1",
"memfs": "^3.5.1",
"minimatch": "^9.0.0",
"nanoid": "^4.0.2",
"node-gyp": "^9.3.1",
"prettier": "^2.8.7",
"prettier-plugin-organize-imports": "^3.2.2",
"rimraf": "^5.0.0",
"semver": "^7.4.0",
"typescript": "^5.0.4",
"wrangler": "2.17.0"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
},
"auto": {
"plugins": [
"npm",
"pr-body-labels"
]
}
}