forked from tophat/yarn-plugin-licenses
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.64 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
{
"name": "@tophat/yarn-plugin-licenses-audit",
"version": "0.0.1",
"description": "Yarn Berry plugin to audit dependency licenses",
"main": "./src/index.ts",
"repository": "git@github.com:tophat/yarn-plugin-licenses.git",
"author": "Top Hat Monocle Corp. <opensource@tophat.com>",
"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",
"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.14.8",
"@babel/core": "^7.14.8",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.8",
"@babel/preset-typescript": "^7.14.5",
"@commitlint/cli": "^11.0.0",
"@tophat/commitlint-config": "^0.1.2",
"@tophat/conventional-changelog-config": "^0.0.9",
"@tophat/eslint-config": "^0.7.0",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"@yarnpkg/builder": "^3.0.0-rc.13",
"@yarnpkg/sdks": "^2.4.1-rc.4",
"all-contributors-cli": "^6.19.0",
"babel-jest": "^26.6.3",
"commitizen": "^4.2.3",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"yaml-validator": "^3.0.0"
},
"lint-staged": {
"yarn.lock": [
"yarn dedupe --check"
],
"*.ts": [
"yarn eslint",
"yarn jest --findRelatedTests"
],
"*.{yml,yaml}": [
"yarn yaml-validator"
]
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@types/node": "^14.0.0",
"@yarnpkg/core": "^3.0.0",
"@yarnpkg/fslib": "^2.5.0",
"@yarnpkg/libzip": "^2.2.2",
"clipanion": "^3.0.1",
"junit-report-builder": "^3.0.0",
"typescript": "^4.2.2"
}
}