-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.29 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.29 KB
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
{
"name": "community-labeller",
"version": "0.1.4",
"private": true,
"description": "A GitHub action to label issues and pull requests with a community label",
"main": "dist/index.js",
"scripts": {
"build": "npx ncc build ./src/main.ts",
"test": "jest",
"start": "npx ncc run ./src/main.ts",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/puppetlabs/community-labeller.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "puppetlabs",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^5.0.3",
"@octokit/request-error": "^2.1.0",
"@octokit/types": "^6.34.0",
"@octokit/webhooks-types": "^5.6.0"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^18.15.0",
"@typescript-eslint/parser": "^5.27.1",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-github": "^4.3.6",
"eslint-plugin-jest": "^26.2.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"js-yaml": "^4.1.0",
"nock": "^13.2.9",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"typescript": "^4.9.5"
}
}