-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.63 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
{
"name": "action-retire-inactive-contributor",
"version": "0.4.0",
"private": true,
"description": "Retire inactive contributors from one team to another",
"author": "Matt Wynne, Kate Dames, Blaise Pabon <[email protected]>",
"license": "ISC",
"homepage": "https://github.com/cucumber/action-retire-inactive-contributor",
"keywords": [
"github"
],
"scripts": {
"build": "tsc --build",
"build:production": "ncc build src/index.ts -o dist --source-map --license licenses.txt",
"build:clean": "rm -rf dist",
"test": "npm run format && npm run lint && npm run build && npm run test:unit && npm run test:acceptance && npm run build:clean && npm run build:production",
"test:acceptance": "cucumber-js --tags 'not @todo and not @wip'",
"test:acceptance:wip": "cucumber-js --tags @wip",
"test:unit": "mocha src/**/*.test.ts",
"lint": "eslint . --ext .ts",
"format": "prettier --config .prettierrc '{src,features}/**/*.ts' --write"
},
"devDependencies": {
"@cucumber/cucumber": "^11.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vercel/ncc": "^0.38.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"hamjest": "^4.0.0",
"prettier": "^3.0.0",
"ts-node": "^10.5.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">= 10.13.0"
},
"dependencies": {
"@actions/core": "^1.8.2",
"@actions/github": "^5.0.3",
"@octokit/rest": "^20.0.0",
"mocha": "^11.0.0",
"parse-duration": "^1.0.2"
}
}