-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.27 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
{
"name": "github-auth0-allow-origins-action",
"version": "1.0.0",
"description": "GitHub action to add Deploy Preview URLs to an Auth0 origin allow list",
"main": "./dist/index.js",
"scripts": {
"lint": "eslint ./src/*.ts",
"lint:ts": "eslint --ignore-path .gitignore --ext .ts ./src/",
"lint:ts:fix": "eslint --ignore-path .gitignore --ext .ts ./src/ --fix",
"package": "node ./esbuild.config.mjs",
"test": "npm run lint && jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boughtbymany/github-auth0-allow-origins-action.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/boughtbymany/github-auth0-allow-origins-action/issues"
},
"homepage": "https://github.com/boughtbymany/github-auth0-allow-origins-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"auth0": "^2.42.0"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/auth0": "^2.35.6",
"@types/jest": "^29.1.2",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"esbuild": "^0.15.10",
"eslint": "^8.24.0",
"jest": "^29.1.2",
"superagent-proxy": "^3.0.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}