forked from JulienKode/team-labeler-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.32 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
{
"name": "team-labeler-action",
"version": "0.1.0",
"private": true,
"description": "Action to add a label based on the team",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build",
"test": "jest",
"build:pack": "yarn build && yarn package",
"all": "yarn build && yarn format && yarn lint && yarn package && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JulienKode/team-labeler-action.git"
},
"keywords": [
"actions",
"github",
"team",
"label",
"labeller",
"node"
],
"author": "Julien Karst",
"license": "MIT",
"dependencies": {
"@actions/core": "1.6.0",
"@actions/github": "2.2.0",
"js-yaml": "3.14.1"
},
"devDependencies": {
"@types/jest": "27.0.3",
"@types/js-yaml": "3.12.7",
"@types/node": "14.18.0",
"@typescript-eslint/parser": "5.10.0",
"@zeit/ncc": "0.22.3",
"eslint": "7.32.0",
"eslint-plugin-github": "2.0.0",
"eslint-plugin-jest": "25.7.0",
"eslint-plugin-prettier": "4.0.0",
"jest": "27.4.4",
"jest-circus": "27.4.4",
"js-yaml": "3.14.1",
"prettier": "2.5.1",
"ts-jest": "27.1.3",
"typescript": "3.9.10"
}
}