-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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
{
"name": "files-sync-action",
"version": "0.0.0",
"description": "Files sync action for Github",
"main": "dist/index.js",
"scripts": {
"build": "ncc build index.js -o dist -m",
"lint:all": "npx eslint --ext .js .",
"lint:all:fix": "npm run lint:all -- --fix",
"lint": "npm run lint:all:fix"
},
"keywords": [
"actions",
"node",
"setup"
],
"repository": {
"type": "git",
"url": "git+https://github.com/adrianjost/files-sync-action.git"
},
"author": "Adrian Jost",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@putout/git-status-porcelain": "^3.0.0",
"recursive-readdir": "^2.2.3",
"rimraf": "^6.0.1"
},
"devDependencies": {
"@vercel/ncc": "^0.38.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"husky": "^9.1.7",
"prettier": "^3.5.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run build && git add dist/*"
}
}
}