-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
173 lines (173 loc) · 6.65 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
{
"name": "@sonia-corporation/stale",
"version": "2.5.0",
"author": {
"email": "[email protected]",
"name": "Geoffrey 'C0ZEN' Testelin",
"url": "https://github.com/C0ZEN"
},
"contributors": [
{
"email": "[email protected]",
"name": "Geoffrey 'C0ZEN' Testelin",
"url": "https://github.com/C0ZEN"
}
],
"description": "A GitHub action to stale and close automatically your issues and pull requests.",
"homepage": "https://github.com/Sonia-corporation/stale",
"maintainers": [
{
"email": "[email protected]",
"name": "Geoffrey 'C0ZEN' Testelin",
"url": "https://github.com/C0ZEN"
}
],
"license": "MIT",
"keywords": [
"github",
"action",
"stale"
],
"repository": {
"type": "git",
"url": "https://github.com/Sonia-corporation/stale.git"
},
"bugs": {
"url": "https://github.com/Sonia-corporation/stale/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./scripts/commitizen.js"
}
},
"engines": {
"node": "18.15.0",
"npm": "8.19.4"
},
"private": false,
"files": [
"dist/*",
"CHANGELOG.md",
"LICENSE"
],
"main": "./src/main.ts",
"scripts": {
"\n# BUILD SCRIPTS:": "",
"build": "npm run clean:dist && ncc build --license licenses.txt --minify",
"build:dirty": "ncc build src/main.ts --license licenses.txt --minify",
"build:docs:vercel": "vercel build",
"\n# DEPLOY SCRIPTS:": "",
"deploy:vercel": "vercel deploy",
"\n# TEST SCRIPTS:": "",
"test": "jest --selectProjects unit integrationIssues integrationPullRequests",
"test:integration:issues": "jest --selectProjects integrationIssues",
"test:integration:pull-requests": "jest --selectProjects integrationPullRequests",
"test:unit": "jest --selectProjects unit",
"test:watch": "jest --watch-all --selectProjects unit integrationIssues integrationPullRequests",
"test:watch:no-cache": "jest --watch-all --no-cache --selectProjects unit integrationIssues integrationPullRequests",
"test:leaks": "jest --detect-leaks --selectProjects unit integrationIssues integrationPullRequests",
"test:ci": "jest --bail=1 --ci --maxWorkers 2 --silent --selectProjects unitCi integrationIssuesCi integrationPullRequestsCi",
"test:ci:coverage": "jest --bail=1 --ci --maxWorkers 2 --silent --collect-coverage --selectProjects unitCi integrationIssuesCiIntegrationPullRequestsCi",
"test:ci:coverage:integration:issues": "jest --bail=1 --ci --maxWorkers 2 --silent --collect-coverage --selectProjects integrationIssuesCi",
"test:ci:coverage:integration:pull-requests": "jest --bail=1 --ci --maxWorkers 2 --silent --collect-coverage --selectProjects integrationPullRequestsCi",
"test:ci:coverage:unit": "jest --bail=1 --ci --maxWorkers 2 --silent --collect-coverage --selectProjects unitCi",
"test:clear-cache": "jest --clear-cache",
"\n# LINT SCRIPTS:": "",
"lint:ts": "eslint --fix --fix-type suggestion,layout,problem --cache --cache-location .eslintcache --quiet **/*.{js,ts,mjs}",
"lint:ts:ci": "eslint --quiet **/*.{js,ts,mjs}",
"lint:ts:hook": "eslint --fix --fix-type suggestion,layout,problem --cache --cache-location .eslintcache --quiet",
"lint:other": "prettier --write --ignore-unknown **/*.{md,json,yml,html}",
"lint:other:this": "prettier --write --ignore-unknown",
"lint:other:ci": "prettier --check --ignore-unknown **/*.{md,json,yml,html}",
"lint:other:hook": "prettier --write --ignore-unknown --loglevel warn",
"lint:all": "npm run concurrently -- \"npm:lint:ts\" \"npm:lint:other\" --prefix-colors cyan,red",
"lint:all:ci": "npm run concurrently -- \"npm:lint:ts:ci\" \"npm:lint:other:ci\" --prefix-colors cyan,red",
"\n# UTILS SCRIPTS:": "",
"cz": "git add . && git-cz && npm run git:push",
"semver": "semantic-release",
"clean:dist": "rimraf dist",
"commit": "npm run cz",
"git:push": "git push-upstream",
"contributors:add": "all-contributors add",
"contributors:check": "all-contributors check",
"contributors:generate": "all-contributors generate",
"concurrently": "concurrently --kill-others-on-fail --prefix '[{name}][{time}]' --timestamp-format 'HH:mm:ss'",
"prepare": "husky install",
"pre-commit": "lint-staged",
"commit-msg": "cross-env LOGGING_LEVEL=debug cz-customizable-ghooks",
"post-commit": "git update-index --again",
"install-git-hooks": "husky install && shx rm -rf .git/hooks && shx ln -s ../.husky .git/hooks",
"postversion": "node scripts/prepare-release.mjs",
"vercel:pull": "vercel pull",
"vercel:pull:ci": "vercel pull --yes"
},
"dependencies": {
"@actions/core": "1.9.1",
"@actions/github": "5.1.1",
"@octokit/graphql-schema": "12.29.0",
"ansi-styles": "6.1.1",
"lodash": "4.17.21",
"luxon": "3.3.0",
"terminal-link": "3.0.0",
"tslib": "2.4.1"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.1.0",
"@sonia-corporation/conventional-changelog": "1.3.0",
"@types/faker": "5.5.9",
"@types/jest": "29.5.7",
"@types/lodash": "4.14.200",
"@types/luxon": "3.2.2",
"@types/node": "14.18.63",
"@typescript-eslint/eslint-plugin": "5.38.1",
"@typescript-eslint/parser": "5.38.1",
"@vercel/ncc": "0.38.1",
"all-contributors-cli": "6.26.1",
"chalk": "5.3.0",
"commitizen": "4.3.0",
"concurrently": "7.6.0",
"cross-env": "7.0.3",
"cz-customizable": "7.0.0",
"cz-customizable-ghooks": "2.0.0",
"eslint": "8.52.0",
"eslint-config-google": "0.14.0",
"eslint-config-prettier": "8.10.0",
"eslint-config-recommended": "4.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jest": "27.6.0",
"eslint-plugin-jsdoc": "40.3.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-progress": "0.0.1",
"eslint-plugin-typescript-sort-keys": "2.3.0",
"faker": "5.5.3",
"gnomon": "1.5.0",
"husky": "8.0.3",
"jest": "29.5.0",
"jest-extended": "3.2.4",
"jest-mock": "29.5.0",
"jest-silent-reporter": "0.5.0",
"jest-ts-auto-mock": "2.1.0",
"lint-staged": "13.3.0",
"moment-timezone": "0.5.43",
"node-notifier": "10.0.1",
"prettier": "2.8.8",
"rimraf": "4.4.1",
"semantic-release": "20.1.3",
"shx": "0.3.4",
"ts-auto-mock": "3.6.4",
"ts-jest": "29.1.1",
"ts-node-dev": "2.0.0",
"tsconfig-paths": "4.2.0",
"ttypescript": "1.5.15",
"typescript": "4.9.5",
"vercel": "28.20.0",
"weak-napi": "2.0.2",
"xregexp": "5.1.1"
}
}