-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
113 lines (113 loc) · 3.47 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
103
104
105
106
107
108
109
110
111
112
113
{
"name": "checkup",
"version": "3.0.1",
"private": true,
"repository": "https://github.com/checkupjs/checkup.git",
"license": "MIT",
"author": "Steve Calvert <[email protected]>",
"main": "index.js",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsc --build && yarn workspace @checkup/core build:copy-schema && yarn workspace checkup-plugin-ember copy:package",
"build:watch": "tsc --watch",
"clean": "yarn clean:lib && tsc --build --clean",
"clean:lib": "find packages -type d -name lib -not -path \"*/node_modules/*\" -exec rm -rf {} +",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"lint": "npm-run-all lint:*",
"lint:ts": "eslint .",
"lint:package-json": "sort-package-json package.json packages/*/package.json",
"prepare": "yarn build",
"test": "yarn lint && yarn workspaces run test",
"test:only": "yarn workspaces run test"
},
"resolutions": {
"@types/yeoman-environment": "^2.10.5",
"@types/yeoman-generator": "^5.2.7",
"@types/yeoman-test": "^4.0.3",
"type-fest": "^2.16.0"
},
"dependencies": {},
"devDependencies": {
"@microsoft/jest-sarif": "^1.0.0-beta.0",
"@release-it-plugins/lerna-changelog": "^5.0.0",
"@release-it-plugins/workspaces": "^3.0.0",
"@types/date-and-time": "^0.13.0",
"@types/debug": "^4.1.7",
"@types/fs-extra": "^9.0.12",
"@types/is-glob": "^4.0.2",
"@types/jest": "^27.0.1",
"@types/json-stable-stringify": "^1.0.32",
"@types/lodash": "^4.14.168",
"@types/node": "^15",
"@types/node-fetch": "^2.5.10",
"@types/sarif": "^2.1.4",
"@types/sloc": "^0.2.0",
"@types/tmp": "^0.2.0",
"@types/yargs": "^17.0.10",
"@types/yeoman-assert": "^3.1.1",
"@types/yeoman-environment": "^2.10.5",
"@types/yeoman-generator": "^5.2.7",
"@types/yeoman-test": "^4.0.3",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.33.0",
"all-contributors-cli": "^6.20.0",
"eslint": "^8.22.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^26.2.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-unicorn": "^38.0.0",
"jest": "^28.1.0",
"jest-environment-node-single-context": "^27.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"release-it": "^15.2.0",
"sort-package-json": "^1.57.0",
"ts-node": "^9",
"type-fest": "^1.0.2",
"typescript": "^4.7.4",
"vite": "^2.9.18",
"vitest": "^0.30.0"
},
"volta": {
"node": "18.15.0",
"yarn": "1.22.11"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"changelog": {
"labels": {
"breaking": ":boom: Breaking Change",
"security": ":lock: Security",
"enhancement": ":rocket: Enhancement",
"bug": ":bug: Bug Fix",
"documentation": ":memo: Documentation",
"internal": ":house: Internal",
"checkup-task": ":bar_chart: Checkup Task",
"generators": ":recycle: Generators"
}
},
"release-it": {
"plugins": {
"@release-it-plugins/lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
},
"@release-it-plugins/workspaces": true
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
},
"npm": false
}
}