-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
48 lines (48 loc) · 1.48 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
48
{
"name": "manage-files-in-multiple-repositories",
"version": "0.5.0",
"description": "This action enables you to copy/update/remove files from one repo to multiple other repos automatically in one shot.",
"main": "lib/index.js",
"scripts": {
"start": "rimraf ./clones && node lib/index.js",
"dev": "DEBUG=simple-git npm start",
"package": "ncc build lib/index.js -o dist",
"gitAdd": "git add dist/index.js",
"gen-readme-toc": "markdown-toc -i README.md",
"lint": "eslint --max-warnings 0 .",
"lint-fix": "eslint --fix .",
"test": "npm run lint && jest"
},
"pre-commit": [
"package",
"gitAdd"
],
"repository": {
"type": "git",
"url": "git+https://github.com/derberg/manage-files-in-multiple-repositories.git"
},
"author": "Lukasz Gornicki <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/derberg/manage-files-in-multiple-repositories/issues"
},
"homepage": "https://github.com/derberg/manage-files-in-multiple-repositories#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"@octokit/plugin-retry": "^3.0.6",
"debug": "^4.3.1",
"fs-extra": "^9.0.1",
"markdown-toc": "^1.2.0",
"simple-git": "^2.48.0"
},
"devDependencies": {
"@vercel/ncc": "^0.23.0",
"eslint": "^7.7.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-sonarjs": "^0.5.0",
"jest": "^26.6.3",
"pre-commit": "^1.2.2",
"rimraf": "^3.0.2"
}
}