-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
70 lines (70 loc) · 1.55 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
{
"name": "@remato/trello-integration-action",
"version": "9.9.0",
"license": "MIT",
"description": "GitHub Action to integrate Github pull requests with Trello cards",
"main": "dist/index.js",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "ncc build src/index.ts",
"test": "jest",
"prettier": "prettier --list-different \"**/*.ts\"",
"lint": "eslint \"**/*.ts\""
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"axios": "^1.7.2"
},
"devDependencies": {
"@remato/eslint-config": "^1.12.0",
"@remato/prettier-config": "^1.0.0",
"@types/jest": "^29.5.12",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.3.1",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5"
},
"prettier": "@remato/prettier-config",
"jest": {
"preset": "ts-jest",
"verbose": true,
"resetMocks": true,
"clearMocks": true,
"testEnvironment": "node",
"moduleFileExtensions": [
"js",
"ts"
],
"testMatch": [
"**/*.test.ts"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"collectCoverage": true,
"collectCoverageFrom": [
"src/**",
"!src/index.ts",
"!src/actions/utils/logger.ts",
"!src/actions/api/**"
]
},
"eslintConfig": {
"extends": [
"@remato/eslint-config/typescript"
],
"ignorePatterns": [
"dist"
]
},
"packageManager": "[email protected]+sha512.5b7bc055cad63273dda27df1570a5d2eb4a9f03b35b394d3d55393c2a5560a17f5cef30944b11d6a48bcbcfc1c3a26d618aae77044774c529ba36cb771ad5b0f"
}