-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.38 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
{
"name": "action-sync-branches",
"version": "1.0.1",
"description": "Creates a sync pull request between two branches",
"private": true,
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"fmt": "prettier --write *.js 'src/**/*.ts'",
"lint": "eslint './src/**/*.ts'",
"test": "NODE_ENV=test ava --serial",
"release": "standard-version"
},
"author": "Jason Wilson <[email protected]>",
"license": "UNLICENSED",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@types/node": "^20.14.6",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"ava": "^6.1.3",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"nock": "^13.5.4",
"prettier": "^3.3.2",
"sinon": "^18.0.0",
"standard-version": "^9.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 60,
"bracketSpacing": true,
"useTabs": false,
"trailingComma": "none",
"arrowParens": "avoid"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}