-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.41 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
{
"name": "projectcard-autolabel",
"version": "1.0.0",
"description": "A GitHub Action to autolabel project cards",
"main": "lib/main.js",
"scripts": {
"build": "ncc build -o lib src/index.ts",
"build2": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc build",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run pack && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Matticusau/projectcard-autolabel.git"
},
"keywords": [],
"author": "MatticusAu",
"license": "MIT",
"bugs": {
"url": "https://github.com/Matticusau/projectcard-autolabel/issues"
},
"homepage": "https://github.com/Matticusau/projectcard-autolabel#readme",
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/github": "^3.0.0",
"front-matter": "^4.0.2",
"js-yaml": "^3.14.0"
},
"devDependencies": {
"@types/js-yaml": "^3.12.4",
"@types/minimatch": "^3.0.3",
"@types/node": "^14.0.13",
"@typescript-eslint/parser": "^3.3.0",
"eslint": "^7.2.0",
"eslint-plugin-github": "^4.0.1",
"eslint-plugin-jest": "^23.13.2",
"jest": "^26.0.1",
"jest-circus": "^26.0.1",
"@types/jest": "^26.0.0",
"minimatch": "^3.0.4",
"prettier": "^2.0.5",
"ts-jest": "^26.1.0",
"typescript": "^3.9.5"
}
}