-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.77 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
{
"name": "action-update-license-year",
"version": "3.0.2",
"description": "GitHub Action that in a pull request updates the copyright year(s) in your license file.",
"keywords": [
"github",
"github-actions",
"license"
],
"private": true,
"homepage": "https://github.com/FantasticFiasco/action-update-license-year",
"repository": {
"type": "git",
"url": "git+https://github.com/FantasticFiasco/action-update-license-year.git"
},
"bugs": {
"url": "https://github.com/FantasticFiasco/action-update-license-year/issues"
},
"author": "Mattias Kindborg <[email protected]> (https://twitter.com/FantasticFiasco)",
"license": "Apache-2.0",
"main": "./dist/index.js",
"scripts": {
"type-check": "tsc --noEmit",
"test": "jest",
"lint": "eslint --max-warnings=0 . && prettier --check .",
"lint:fix": "eslint --fix . && prettier --write .",
"coverage": "jest --coverage",
"dist": "ncc build ./src/index.js",
"preversion": "npm run dist && git add ./dist && git add ./CHANGELOG.md && node ./scripts/generate-docs.js && git add ./README.md",
"postversion": "git push --follow-tags"
},
"dependencies": {
"@actions/core": "1.11.1",
"@actions/github": "6.0.0",
"@actions/glob": "0.5.0"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/js-yaml": "4.0.9",
"@types/node": "22.10.2",
"@vercel/ncc": "0.38.3",
"eslint": "9.17.0",
"jest": "29.7.0",
"js-yaml": "4.1.0",
"prettier": "3.4.2",
"typescript": "5.7.2"
},
"resolutions": {
"@actions/core": "1.11.1",
"hosted-git-info": ">=2.8.9",
"kind-of": ">=6.0.3",
"lodash": ">=4.17.19",
"minimist": ">=1.2.6",
"node-notifier": ">=8.0.1",
"path-parse": ">=1.0.7",
"tmpl": ">=1.0.5"
}
}