forked from agrc/reminder-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.77 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
{
"name": "reminder-action",
"version": "1.0.11",
"description": "Post issue comments when reminders are due",
"main": "index.js",
"scripts": {
"format": "prettier --write ./ --ignore-path ./.ignore",
"format:fix": "prettier --loglevel warn --write \"./**/*.{js,md}\" --ignore-path ./.ignore",
"fix": "npm run format:fix && npm run lint:fix",
"lint": "eslint ./ --ext .js --ignore-path ./.ignore",
"lint:fix": "eslint ./ --ext .js --quiet --fix --ignore-path ./.ignore",
"prepare": "husky install && ncc build index.js -o dist --source-map --license licenses.txt",
"test": "jest",
"all": "npm run fix && npm run prepare && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agrc/reminder-action.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"probot",
"reminders"
],
"author": "UGRC",
"license": "MIT",
"bugs": {
"url": "https://github.com/agrc/reminder-action/issues"
},
"homepage": "https://github.com/agrc/reminder-action#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3"
},
"eslintConfig": {
"env": {
"node": true,
"es6": true,
"jest": true
},
"extends": [
"eslint:recommended",
"prettier"
],
"parserOptions": {
"ecmaVersion": 2018
}
},
"prettier": {
"singleQuote": true,
"semi": true
},
"lint-staged": {
"*.js": "eslint --cache --fix --ignore-path ./.ignore",
"*.{js,md}": "prettier --write --ignore-path ./.ignore"
}
}