forked from iainmcgin/cla-github-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.45 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.45 KB
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
{
"name": "github-action",
"version": "0.0.1",
"description": "GitHub Action for storing CLA signatures",
"type": "commonjs",
"main": "lib/main.js",
"private": true,
"files": [
"dist/",
"action.yml"
],
"scripts": {
"test": "jest",
"build": "tsc && ncc build",
"buildAndAdd": "npm run build && git add .",
"format": "prettier --write \"src/**/*.ts\" \"__tests__/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"__tests__/**/*.ts\"",
"lint:knip": "knip",
"lint:publint": "publint",
"lint": "npm run format:check && npm run lint:knip && npm run lint:publint",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cla-assistant/github-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1",
"@octokit/plugin-retry": "^6.1.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^20.19.39",
"@vercel/ncc": "^0.38.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"knip": "^6.6.1",
"prettier": "^3.8.3",
"publint": "^0.3.18",
"ts-jest": "^29.0.5",
"typescript": "^6.0.3",
"undici": "^5.29.0"
},
"author": "ibakshay",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cla-assistant/github-action/issues"
},
"homepage": "https://github.com/cla-assistant/github-action#readme"
}