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 7
/
Copy pathpackage.json
90 lines (90 loc) · 2.91 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
{
"name": "@tophat/yarn-plugin-licenses-audit",
"version": "0.0.1",
"description": "Yarn Berry plugin to audit dependency licenses",
"main": "./src/index.ts",
"repository": "[email protected]:tophat/yarn-plugin-licenses.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": "^17.7.1",
"@tophat/commitlint-config": "^1.0.2",
"@tophat/conventional-changelog-config": "^1.0.1",
"@tophat/eslint-config": "^8.0.1",
"@tophat/eslint-import-resolver-require": "^0.1.5",
"@types/jest": "^29.5.5",
"@types/node": "^18.18.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.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.26.1",
"babel-jest": "^29.7.0",
"commitizen": "^4.3.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"yaml-validator": "^5.1.0"
},
"lint-staged": {
"yarn.lock": [
"yarn dedupe --check"
],
"*.ts": [
"yarn eslint",
"yarn jest --findRelatedTests"
],
"*.{yml,yaml}": [
"yarn yaml-validator"
]
},
"dependencies": {
"clipanion": "^4.0.0-rc.2",
"junit-report-builder": "^3.0.1"
},
"packageManager": "[email protected]"
}