-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.5 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "add-write-permissions-for-codeowners",
"version": "1.0.0",
"description": "A GitHub Action to add missing write permissions for CODEOWNERS.",
"main": "compiled/index.js",
"scripts": {
"compile": "tsc",
"preaction": "tsc",
"action": "dotenv -e development/.env.development -e development/.env.github-token -- node compiled/index.js",
"format": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts",
"lint": "eslint --fix **/*.ts",
"lint:check": "eslint **/*.ts",
"test": "jest --coverage",
"test:watch": "jest --watch --coverage",
"test:ci": "jest --coverage --silent",
"package": "ncc build --source-map --license licenses.txt",
"preci:package": "tsc",
"ci:package": "yarn package"
},
"repository": {
"type": "git",
"url": "git@github.com:Archetypically/add-write-permissions-for-codeowners.git"
},
"keywords": [
"github",
"actions",
"codeowners"
],
"author": "Evan Lee <@Archetypically>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Archetypically/add-write-permissions-for-codeowners/issues"
},
"homepage": "https://github.com/Archetypically/add-write-permissions-for-codeowners#readme",
"jest": {
"preset": "ts-jest",
"clearMocks": true,
"testEnvironment": "node",
"testMatch": [
"**/*.test.ts"
],
"verbose": true
},
"eslintConfig": {
"extends": "eslint:recommended",
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"jest"
],
"env": {
"jest/globals": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}
]
}
},
"prettier": {
"printWidth": 100
},
"devDependencies": {
"@jest/globals": "^29.0.1",
"@types/jest": "^29.0.0",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"dotenv-cli": "^6.0.0",
"eslint": "^8.23.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "^27.0.1",
"jest": "^29.0.1",
"prettier": "2.7.1",
"ts-jest": "^28.0.8"
},
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^5.0.3",
"@vercel/ncc": "^0.34.0",
"typescript": "^4.8.2"
}
}