-
Notifications
You must be signed in to change notification settings - Fork 224
/
package.json
53 lines (53 loc) · 1.37 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
{
"devDependencies": {
"@actions/core": "^1.10.0",
"@types/lolex": "^5.1.6",
"@types/psl": "^1.1.3",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"cspell": "7.3.9",
"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",
"eslint-plugin-mocha": "^10.4.3",
"execa": "5.1.1",
"husky": "8.0.3",
"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": "cd packages/cli && yarn prepack",
"test": "lerna run test --concurrency 4",
"lint": "cd packages/cli && yarn lint",
"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",
"postinstall": "husky install"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"packageManager": "[email protected]"
}