-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 892 Bytes
/
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
{
"author": "Yegor Bugayenko <[email protected]> (https://www.yegor256.com/)",
"bin": {
"copyrights": "./src/copyrights.js"
},
"dependencies": {
"@actions/core": "1.11.1",
"glob": "11.0.1",
"node": "23.6.1"
},
"description": "A GitHub Action that checks the presence of copyright notices in all text files",
"devDependencies": {
"eslint": "9.19.0",
"mocha": "11.1.0"
},
"engines": {
"node": ">6.0",
"npm": ">8.0"
},
"homepage": "https://github.com/yegor256/copyrights-action",
"keywords": [
"cli",
"command",
"github",
"console"
],
"license": "MIT",
"main": "copyrights",
"name": "copyrights-action",
"os": [
"darwin",
"linux"
],
"repository": {
"type": "git",
"url": "yegor256/copyrights-action"
},
"scripts": {
"eslint": "eslint",
"test": "mocha"
},
"version": "0.0.0"
}