-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.17 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
49
50
{
"name": "action-monorepo-version-tags-lifecycle",
"description": "Generate version tags on a monorepo with multiple components",
"main": "index.js",
"dependencies": {
"@actions/core": "1.6.0",
"@actions/exec": "1.1.0",
"@actions/github": "4.0.0",
"yaml": "2.0.0-8"
},
"devDependencies": {
"@vercel/ncc": "0.25.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-sonar": "0.0.8",
"eslint-plugin-jest": "24.5.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.2",
"jest": "27.2.4",
"lint-staged": "11.2.3",
"prettier": "2.4.1"
},
"scripts": {
"build": "ncc build src/index.js",
"test": "jest",
"lint": "npm run lint:check && npm run prettier:check",
"prettier:check": "prettier -c src",
"lint:check": "eslint src",
"prepare": "husky install"
},
"keywords": [
"monorepo",
"version-tags"
],
"author": "Inteygenz",
"license": "ISC",
"lint-staged": {
"src/**/*.js": [
"eslint --fix src",
"prettier --write src",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}