-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.14 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
{
"name": "github-action",
"version": "0.0.1",
"description": "GitHub Action for storing CLA signatures",
"main": "lib/main.js",
"scripts": {
"test": "jest",
"build": "ncc build ./src/main.ts -o ./lib -m && mv ./lib/index.js ./lib/main.js",
"buildAndAdd": "npm run build && git add ."
},
"husky": {
"hooks": {
"pre-commit": "npm run buildAndAdd"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/cla-assistant/github-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"@octokit/rest": "^16.0.0",
"actions-toolkit": "^2.1.0",
"husky": "^4.3.0",
"lodash": "^4.17.19",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@octokit/types": "5.0.1",
"@types/node": "^12.0.4",
"@zeit/ncc": "^0.21.1",
"ts-jest": "^24.2.0",
"typescript": "^3.8.3"
},
"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"
}