-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.15 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "sync-repository",
"version": "1.1.0",
"description": "A Github action to sync a Git repository",
"main": "action.yml",
"scripts": {
"lint": "eslint --ext .ts,.yml --fix action.yml .github tests",
"lint-no-fix": "npm run lint -- --no-fix",
"test": "jest --ci",
"version": "auto-changelog && git add CHANGELOG.md"
},
"git": {
"pre-commit": [
"lint-no-fix"
]
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/dvuckovic/sync-repository"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.25.7",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.62.0",
"@vercel/git-hooks": "^1.0.0",
"auto-changelog": "^2.5.0",
"eslint": "^8.48.0",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-json-schema-validator": "^5.1.3",
"eslint-plugin-jsonc": "^2.0.0",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"typescript": "^4.5.2"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
"@babel/preset-typescript"
]
},
"jest": {
"clearMocks": true,
"restoreMocks": true
},
"eslintConfig": {
"env": {
"browser": false,
"node": true,
"commonjs": true,
"es2021": true
},
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:jest/all",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:json-schema-validator/recommended"
],
"parserOptions": {
"ecmaVersion": 12
},
"rules": {
"indent": [
"error",
4
],
"json-schema-validator/no-invalid": [
"error",
{
"useSchemastoreCatalog": true
}
]
}
},
"auto-changelog": {
"commitLimit": 99,
"hideCredit": true,
"package": true,
"template": "keepachangelog"
}
}