forked from heroku/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"devDependencies": {
"@actions/core": "^1.10.0",
"@typescript-eslint/eslint-plugin": "4.18.0",
"@typescript-eslint/parser": "4.18.0",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.2",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"execa": "5.1.1",
"lerna": "^6.4.1",
"mkdirp": "^0.5.2",
"oclif": "4.4.7",
"promise-request-retry": "^1.0.2",
"qqjs": "0.3.11",
"standard": "17.1.0",
"tmp": "^0.2.1"
},
"resolutions": {
"ansi-regex": "4.1.1"
},
"standard": {
"env": "mocha",
"ignore": [
"**/node_modules/**",
"packages/*/lib/**"
]
},
"engines": {
"node": ">=14"
},
"private": true,
"scripts": {
"build": "lerna run prepack --concurrency 4",
"test": "lerna run test --concurrency 4",
"version": "cp packages/cli/CHANGELOG.md CHANGELOG.md && git add CHANGELOG.md",
"cleanNodeModules": "rm -rf ./packages/*/node_modules && rm -rf ./node_modules && rm -rf ./.yarn/cache"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"packageManager": "[email protected]"
}