-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.14 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": "needs-attention",
"version": "2.0.0",
"description": "A GitHub Action that flags issues that need attention.",
"author": "Héctor Ramos, Pranav Yadav",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-native-community/needs-attention/issues"
},
"homepage": "https://github.com/react-native-community/needs-attention#readme",
"main": "lib/index.js",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "ncc build src/index.ts -o lib",
"test": "echo \"Error: no test specified\" && exit 1",
"prettier": "prettier --write \"./**/*.{js,md,yml,ts}\"",
"format-check": "prettier --list-different \"./**/*.{js,md,yml,ts}\"",
"clean": "rm -rf ./lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/react-native-community/needs-attention.git"
},
"keywords": [
"actions",
"needs attention",
"labels",
"issue labels"
],
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1"
},
"devDependencies": {
"@types/node": "^20.2.4",
"@vercel/ncc": "^0.36.1",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
}
}