-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.7 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
{
"name": "code-coverage-assistant-ts",
"version": "1.0.0",
"description": "Comments a pull request with the lcov code coverage and uses s3 as backend storage",
"license": "MIT",
"bin": {
"code-coverage-assistent-ts": "bin/cli.js"
},
"repository": "https://github.com/hokify/code-coverage-assistant-ts",
"keywords": [
"actions",
"monorepo",
"pull-request",
"comment",
"message"
],
"main": "lib/cli.js",
"scripts": {
"build": "tsc",
"pack": "ncc build -m --license licenses.txt src/index.ts",
"test": "jest --passWithNoTests --coverage",
"local": "babel-node src/cli",
"format": "prettier --write src/*.js src/**/*.js *.js",
"lint": "eslint --ext .ts src/ test/",
"pre-commit": "lint-staged"
},
"type": "module",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^4.0.0",
"@aws-sdk/client-s3": "^3.272.0",
"lcov-parse": "^1.0.0"
},
"devDependencies": {
"@hokify/eslint-config": "^2.4.0",
"@types/jest": "^29.4.0",
"@types/lcov-parse": "^1.0.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.27.0",
"husky": ">=8.0.1",
"jest": "^29.2.2",
"lint-staged": "^13.0.3",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"prettier": {
"tabWidth": 4,
"useTabs": false,
"bracketSpacing": true,
"trailingComma": "all"
},
"lint-staged": {
"*.js": [
"eslint --cache --fix",
"prettier --write --ignore-unknown"
]
}
}