-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.9 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
51
52
53
54
55
{
"name": "yoobic-github-action",
"version": "1.0.2",
"description": "A list of yoobic github actions",
"license": "UNLICENSED",
"engines": {
"node": "14.18.2",
"npm": "6.14.15"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yoobic/yoobic-github-action.git"
},
"bugs": {
"url": "https://github.com/Yoobic/yoobic-github-action/issues"
},
"homepage": "https://github.com/Yoobic/yoobic-github-action#readme",
"author": "Avi Haiat",
"scripts": {
"cm": "npm run lint && git add . && git-cz",
"format:pkg": "format-package -i '**/node_modules/**' -w -v false",
"lint": "concurrently -p none npm:lint:*",
"lint:code": "eslint --cache --cache-strategy content .",
"pre-commit": "npm run format:pkg && lint-staged && git add .",
"release": "standard-version --release-as patch && git push --follow-tags origin master",
"release:major": "standard-version --release-as major && git push --follow-tags origin master",
"release:minor": "standard-version --release-as minor && git push --follow-tags origin master",
"test": "npm run lint"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-angular": "^13.1.0",
"@commitlint/cz-commitlint": "^13.1.0",
"@commitlint/prompt": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"commitizen": "^4.2.4",
"concurrently": "^6.4.0",
"cz-emoji": "^1.3.1",
"dotenv": "^10.0.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-filename-rules": "^1.2.0",
"eslint-plugin-folders-rules": "^1.0.5",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"format-package": "^6.1.0",
"husky": "^7.0.4",
"inquirer": "^8.2.0",
"lint-staged": "^12.1.1",
"prettier": "^2.4.1",
"standard-version": "^9.3.2"
}
}