-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
83 lines (83 loc) · 2.4 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
{
"name": "copybara-action",
"version": "0.0.0",
"private": true,
"description": "Transform and move code between repositories.",
"main": "src/main.ts",
"scripts": {
"build": "ncc build --license licenses.txt",
"build:check": "yarn build && [[ -z $(git status -s dist ':^dist/src') ]]",
"format": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts",
"lint": "eslint --cache --fix src/**/*.ts",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --passWithNoTests",
"test:local": "act --secret-file=.secrets",
"test:local:watch": "yarn test:action --watch",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/olivr/copybara-action.git"
},
"keywords": [
"actions",
"copybara"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/artifact": "^2.1.9",
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"fs-extra": "^11.2.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@eslint/js": "^9.11.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.1.1",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/eslint__js": "^8.42.3",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.13",
"@types/node": "^22.5.5",
"@typescript-eslint/parser": "^8.6.0",
"@vercel/ncc": "^0.38.1",
"commitizen": "^4.3.0",
"cz-customizable": "^7.2.1",
"eslint": "^9.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-n": "^17.10.3",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"js-yaml": "^4.1.0",
"lint-staged": "^15.2.10",
"prettier": "3.3.3",
"semantic-release": "17",
"tablemark": "^3.1.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.6.0",
"yaml": "^2.5.1"
},
"config": {
"commitizen": {
"path": "cz-customizable"
}
},
"overrides": {
"conventional-changelog-conventionalcommits": ">= 8.0.0"
},
"lint-staged": {
"src/**/*.ts": "eslint --cache --fix"
},
"packageManager": "[email protected]"
}