-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.09 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.09 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
{
"name": "pr-action",
"version": "1.2.0",
"main": "index.js",
"license": "MIT",
"packageManager": "yarn@4.0.1",
"scripts": {
"build": "ncc build index.js --license licenses.txt --target es6",
"test": "jest",
"lint": "eslint --cache --fix"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/eslint-parser": "^7.22.15",
"@babel/preset-env": "^7.23.2",
"@vercel/ncc": "^0.38.0",
"dotenv": "^16.3.1",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"jest": "^29.7.0",
"nock": "^13.3.4",
"pre-commit": "^1.2.2",
"prettier": "^3.0.3"
},
"jest": {
"setupFiles": [
"<rootDir>/tests/jest.setup.js"
]
},
"pre-commit": {
"run": [
"lint"
]
}
}