-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.4 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
{
"name": "bitly-url-shortener",
"version": "1.0.0",
"description": "A GitHub Action to automate generating shortened URLs with Bit.ly.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "npm run build && ncc build",
"test": "jest"
},
"pre-commit": "pack",
"repository": {
"type": "git",
"url": "git+https://github.com/builders-club/bitly-url-shortener.git"
},
"keywords": [
"bitly",
"shorten",
"link",
"action"
],
"author": "Michael Jolley <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/builders-club/bitly-url-shortener/issues"
},
"homepage": "https://github.com/builders-club/bitly-url-shortener#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"actions-toolkit": "^6.0.1"
},
"devDependencies": {
"@octokit/types": "^7.1.0",
"@types/jest": "^28.1.7",
"@types/node": "^18.7.8",
"@typescript-eslint/parser": "^5.33.1",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.22.0",
"eslint-plugin-github": "^4.3.7",
"eslint-plugin-jest": "^26.8.4",
"jest": "^28.1.3",
"jest-circus": "^28.1.3",
"js-yaml": "^4.1.0",
"prettier": "^2.7.1",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4"
}
}