-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.43 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": "npm-dependency-manager-for-your-github-org",
"version": "3.0.0",
"description": "This action handles automated update of dependencies in package.json between projects from the same GitHub organization.",
"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/org-projects-dependency-manager.git"
},
"author": "Lukasz Gornicki <lpgornicki@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/derberg/org-projects-dependency-manager/issues"
},
"homepage": "https://github.com/derberg/org-projects-dependency-manager#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"execa": "^4.1.0",
"markdown-toc": "^1.2.0",
"npm": "^6.14.9",
"simple-git": "^2.20.1"
},
"devDependencies": {
"@vercel/ncc": "^0.23.0",
"eslint": "^7.7.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-sonarjs": "^0.5.0",
"jest": "^26.4.1",
"pre-commit": "^1.2.2",
"rimraf": "^3.0.2"
}
}