-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.42 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.42 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
50
51
52
53
{
"name": "@flxbl-io/get-github-token-action",
"version": "1.0.0",
"description": "GitHub Action to fetch a GitHub installation token from SFP Server",
"main": "dist/index.js",
"scripts": {
"build": "tsc && ncc build src/index.ts -o dist --source-map --minify",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"all": "npm run format && npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flxbl-io/get-github-token-action.git"
},
"keywords": [
"github",
"actions",
"sfp",
"sfops",
"token",
"authentication",
"salesforce",
"devops"
],
"author": "flxbl-io",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/flxbl-io/get-github-token-action/issues"
},
"homepage": "https://github.com/flxbl-io/get-github-token-action#readme",
"dependencies": {
"@actions/core": "^1.11.1"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=20"
}
}