-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.79 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
{
"name": "relabeler",
"version": "0.0.1-preview.89",
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf dist",
"clean:coverage": "rm -rf coverage testResults",
"build": "npm run clean && npx ncc build src/index.ts -o dist --source-map --license licenses.txt",
"test": "jest --verbose --detectOpenHandles",
"test:debug": "jest --coverage=false --verbose --detectOpenHandles --debug",
"test:watch": "jest --watchAll --coverage=false --verbose --detectOpenHandles",
"test:ci": "npm run clean:coverage && jest --coverage --verbose --detectOpenHandles && npm run lint",
"lint": "eslint 'src/**/*.{ts,js}'",
"lint:fix": "eslint 'src/**/*.{ts,js}' --fix",
"refresh:packages": "npm cache clean --force && rm -rf node_modules && npm install"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"js-yaml": "^4.1.0",
"ajv": "^8.17.1",
"@octokit/webhooks-types": "^7.6.1"
},
"devDependencies": {
"typescript": "5.7.2",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"ts-jest": "^29.1.1",
"@types/jest": "^29.5.14",
"@octokit/webhooks-types": "^7.6.1",
"eslint": "^9.16.0",
"@typescript-eslint/parser": "^8.16.0",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@eslint/create-config": "^1.4.0",
"globals": "^15.13.0",
"@eslint/js": "^9.16.0",
"typescript-eslint": "^8.17.0",
"@types/js-yaml": "^4.0.5",
"@vercel/ncc": "^0.38.3"
},
"jest-junit": {
"suiteName": "Relabeler Tests",
"outputDirectory": "testResults",
"outputName": "junit.xml",
"reportTestSuiteErrors": "true",
"includeConsoleOutput": "true",
"ancestorSeparator": " :: "
},
"engines": {
"node": ">=20.0.0"
}
}