forked from Olivr/copybara-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.44 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
{
"name": "copybara-action",
"version": "0.0.0",
"private": true,
"description": "Transform and move code between repositories.",
"main": "src/main.ts",
"scripts": {
"build": "ncc build --source-map --license licenses.txt",
"build:check": "yarn build && [[ -z $(git status -s dist) ]]",
"format": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts",
"lint": "eslint --cache --fix src/**/*.ts",
"test": "jest --passWithNoTests",
"test:local": "act --secret-file=.secrets",
"test:local:watch": "yarn test:action --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mailchain/copybara-action.git"
},
"keywords": [
"actions",
"copybara"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/artifact": "^0.3.5",
"@actions/core": "^1.2.5",
"@actions/exec": "^1.0.4",
"@actions/github": "^4.0.0",
"fs-extra": "^9.0.1"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.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/fs-extra": "^9.0.1",
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"@typescript-eslint/parser": "^3.10.1",
"@vercel/ncc": "^0.23.0",
"commitizen": "^4.2.1",
"cz-customizable": "^6.3.0",
"eslint": "^7.7.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^24.9.0",
"jest-circus": "^26.4.2",
"js-yaml": "^3.14.0",
"lint-staged": ">=10",
"prettier": "2.1.1",
"tablemark": "^2.0.0",
"ts-jest": "^24.3.0",
"typescript": "^4.0.2",
"yaml": "^1.10.0"
},
"config": {
"commitizen": {
"path": "cz-customizable"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git-cz --hook || true",
"commit-msg": "echo $HUSKY_GIT_PARAMS && echo $HUSKY_GIT_STDIN && commitlint -E HUSKY_GIT_PARAMS --config .config/commitlint.config.js",
"pre-commit": "lint-staged && ./.config/commit-docs.sh && ./.config/commit-build.sh"
}
},
"lint-staged": {
"src/**/*.ts": "eslint --cache --fix"
}
}