This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
generated from tophat/new-project-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.23 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
{
"name": "@tophat/yarn-plugin-semver-up",
"version": "0.0.1",
"description": "Yarn Berry plugin to update dependencies",
"main": "./src/index.ts",
"repository": "[email protected]:tophat/yarn-plugin-semver-up.git",
"author": "Top Hat Monocle Corp. <[email protected]>",
"license": "Apache-2.0",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"clean": "rm -rf ${ARTIFACT_DIR:-artifacts} lib && find ./src -name '*.js' -type f -delete",
"test": "jest",
"test:ci": "jest --ci",
"test:update": "jest -u",
"test:watch": "jest --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:ci": "eslint . --format junit --output-file ${ARTIFACT_DIR:-artifacts}/test_results/eslint/eslint.junit.xml",
"types": "tsc -p tsconfig.json --noEmit",
"build": "builder build plugin",
"prepack": "yarn build",
"contrib:add": "all-contributors add",
"contrib:generate": "all-contributors generate",
"contrib:check": "all-contributors check"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.3",
"@babel/plugin-transform-runtime": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@commitlint/cli": "^11.0.0",
"@tophat/commitlint-config": "^1.0.2",
"@tophat/conventional-changelog-config": "^1.0.1",
"@tophat/eslint-config": "^9.0.0",
"@tophat/eslint-import-resolver-require": "^1.0.0",
"@types/jest": "^28.1.2",
"@types/micromatch": "^4.0.2",
"@types/node": "^16.0.0",
"@types/semver": "^7.3.6",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@yarnpkg/builder": "^4.0.0",
"@yarnpkg/cli": "^4.0.1",
"@yarnpkg/core": "^4.0.1",
"@yarnpkg/fslib": "^3.0.1",
"@yarnpkg/libzip": "^3.0.0",
"@yarnpkg/plugin-essentials": "^4.0.1",
"@yarnpkg/plugin-git": "^3.0.0",
"@yarnpkg/plugin-npm": "^3.0.0",
"@yarnpkg/plugin-pack": "^4.0.0",
"@yarnpkg/sdks": "^3.0.0",
"all-contributors-cli": "^6.20.0",
"babel-jest": "^28.1.1",
"clipanion": "^4.0.0-rc.2",
"commitizen": "^4.2.4",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^6.0.0",
"jest": "^29.7.0",
"jest-junit": "^13.2.0",
"lint-staged": "^11.0.0",
"prettier": "^3.0.3",
"typescript": "5.2.2",
"yaml-validator": "^3.0.1"
},
"peerDependencies": {
"@yarnpkg/cli": "^3.0.0",
"@yarnpkg/core": "^3.0.0",
"@yarnpkg/fslib": "^2.5.0",
"@yarnpkg/libzip": "^2.2.2",
"@yarnpkg/plugin-essentials": "^3.0.0",
"@yarnpkg/plugin-npm": "^2.5.0",
"clipanion": "^3.0.1"
},
"lint-staged": {
"yarn.lock": [
"yarn dedupe --check"
],
"*.ts": [
"yarn eslint",
"yarn jest --findRelatedTests"
],
"*.{yml,yaml}": [
"yarn yaml-validator"
]
},
"dependencies": {
"micromatch": "^4.0.5",
"semver": "^7.3.7"
},
"packageManager": "[email protected]"
}