-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 1.91 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
{
"name": "action-repository-dispatch",
"version": "2.0.1",
"description": "Send repository_dispatch events with custom payloads",
"main": "dist/index.js",
"author": {
"name": "Tony DBR",
"email": "tonyblast@gmail.com"
},
"license": "MIT",
"repository": "git@github.com:iniva/action-repository-dispatch.git",
"scripts": {
"build": "rm -rf ./dist && tsc && ncc build",
"test:typecheck": "tsc --noEmit",
"test:lint": "eslint . --ext .ts",
"test:lint:fix": "eslint . --ext .ts --fix",
"test:unit": "jest",
"test:coverage": "jest --coverage",
"prepare": "husky"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"got": "^11.8.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.14",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vercel/ncc": "^0.38.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.4",
"jest": "^29.7.0",
"nock": "^13.5.4",
"prettier": "^3.3.3",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"roots": [
"."
],
"modulePaths": [
"<rootDir>/src/"
],
"testMatch": [
"**/test/**/*.spec.ts"
],
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"<rootDir>/src/**/*.ts"
],
"coverageDirectory": "<rootDir>/coverage",
"reporters": [["default", {"summaryThreshold": 1}]],
"testEnvironment": "node",
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
}
}
}