generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "props-bot-action",
"version": "1.0.0",
"description": "Generates WordPress.org style props for easy pasting into merge commit messages.",
"main": "index.js",
"engines": {
"node": ">=20.7.0",
"npm": ">=10.1"
},
"scripts": {
"lint": "eslint .",
"prepare": "ncc build index.js -o dist --license licenses.txt",
"test": "jest --passWithNoTests",
"all": "npm run lint && npm run prepare"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WordPress/props-bot.git"
},
"keywords": [
"WordPress",
"GitHub",
"Actions",
"JavaScript"
],
"author": "The WordPress Contributors",
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/WordPress/props-bot/issues"
},
"homepage": "https://github.com/WordPress/props-bot#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"jest": "^29.7.0"
}
}