-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
40 lines (40 loc) · 1.15 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
{
"name": "cla-action",
"version": "0.0.0",
"main": "lib/src/main.js",
"prettier": "@shopify/prettier-config",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint **/*.ts",
"lint:fix": "eslint **/*.ts --fix",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"ci:package": "yarn build && yarn package"
},
"dependencies": {
"@actions/core": "1.10.0",
"@actions/github": "^5.1.1",
"@actions/http-client": "^2.1.0",
"@octokit/core": "^3.6.0",
"@octokit/plugin-paginate-rest": "^2.21.3",
"@octokit/webhooks-definitions": "^3.67.3",
"lodash": "^4.17.21"
},
"devDependencies": {
"@shopify/eslint-plugin": "~40",
"@shopify/prettier-config": "^1.1.2",
"@types/jest": "27.5.2",
"@types/lodash": "^4.14.195",
"@types/node": "16.11.39",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.61.0",
"@vercel/ncc": "0.36.1",
"eslint": "8.45.0",
"jest": "28.1.1",
"prettier": "2.8.8",
"ts-jest": "28.0.4",
"typescript": "4.7.3"
}
}