generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
59 lines (59 loc) · 1.64 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
{
"name": "create-reminder-action",
"version": "1.1.16",
"description": "A GitHub Action for setting reminders in issues",
"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 .",
"lint:fix": "eslint . --quiet --fix",
"prepare": "husky && 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/create-reminder-action.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"probot",
"reminders"
],
"author": "UGRC",
"license": "MIT",
"bugs": {
"url": "https://github.com/agrc/create-reminder-action/issues"
},
"homepage": "https://github.com/agrc/create-reminder-action#readme",
"dependencies": {
"@actions/core": "^1.11.0",
"@actions/github": "^6.0.0",
"parse-reminder": "^1.3.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.1",
"@vercel/ncc": "^0.38.2",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.10.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3"
},
"prettier": {
"singleQuote": true,
"semi": true
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,md}": "prettier --write --ignore-path ./.ignore"
}
}