-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.44 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
{
"name": "@conventional-actions/toolkit",
"version": "0.0.0",
"private": false,
"description": "Conventional Actions toolkit",
"main": "lib/index.js",
"publishConfig": {
"scope": "@conventional-actions",
"registry": "https://npm.pkg.github.com",
"access": "public"
},
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/conventional-actions/toolkit.git"
},
"homepage": "https://github.com/conventional-actions/toolkit",
"bugs": {
"url": "https://github.com/conventional-actions/toolkit/issues"
},
"keywords": [
"GitHub",
"action",
"toolkit"
],
"author": "Conventional Actions",
"license": "MIT",
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@typescript-eslint/parser": "^5.48.1",
"@vercel/ncc": "^0.36.0",
"eslint": "^8.31.0",
"eslint-plugin-github": "^4.6.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.3.1",
"js-yaml": "^4.1.0",
"prettier": "^2.8.2",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/tool-cache": "^2.0.1",
"glob": "^8.0.3"
}
}