-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
60 lines (60 loc) · 1.42 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
{
"name": "props-bot-action",
"version": "1.0.0",
"description": "Generates WordPress.org style props for easy pasting into merge commit messages.",
"author": "The WordPress Contributors",
"license": "MIT",
"keywords": [
"WordPress",
"GitHub",
"Actions",
"JavaScript"
],
"homepage": "https://github.com/WordPress/props-bot#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/WordPress/props-bot.git"
},
"bugs": {
"url": "https://github.com/WordPress/props-bot/issues"
},
"engines": {
"node": ">=20.7.0",
"npm": ">=10.1"
},
"main": "index.js",
"npmpackagejsonlint": {
"extends": "@wordpress/npm-package-json-lint-config",
"rules": {
"valid-values-license": [
"error",
[
"MIT"
]
]
}
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@wordpress/npm-package-json-lint-config": "^5.14.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@vercel/ncc": "^0.38.3",
"@wordpress/eslint-plugin": "^19.2.0",
"@wordpress/scripts": "^30.7.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5"
},
"scripts": {
"lint": "npm-run-all lint:js lint:pkg-json",
"lint:js": "wp-scripts lint-js",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"format": "wp-scripts format",
"prepare": "ncc build index.js -o dist --license licenses.txt",
"test": "jest --passWithNoTests",
"all": "npm-run-all lint prepare test"
}
}