-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.74 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
{
"name": "auth0-action",
"version": "1.0.0",
"description": "Satosa Auth0 Action",
"main": "src/index.ts",
"scripts": {
"lint": "eslint rollup.config.ts src/*.ts test/*.ts --fix",
"test": "npm run build && jest test/index.test.js",
"typecheck": "tsc",
"build:ts": "tsc --outDir dist",
"build:bundle": "rollup -c dist/rollup.config.js --bundleConfigAsCjs && rollup -c dist/rollup.test.config.js --bundleConfigAsCjs",
"build": "npm run build:ts && npm run build:bundle",
"marketplace": "npm run build && cp action.js marketplace/integration.action.js && cp test/index.test.js marketplace/integration.action.spec.js",
"deploy": "npm run build && npx rollup dist/src/deploy.js --file deploy.js --format cjs -e auth0-deploy-cli && node deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/satosa-io/auth0-action.git"
},
"author": "satosa",
"license": "MIT",
"bugs": {
"url": "https://github.com/satosa-io/auth0-action/issues"
},
"homepage": "https://github.com/satosa-io/auth0-action#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@types/jest": "^29.5.3",
"@types/node": "^20.3.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"auth0-deploy-cli": "7.24.2",
"eslint": "^8.43.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.6.2",
"rollup": "^3.25.3",
"typescript": "^4.8.4",
"yaml": "^2.3.1"
},
"dependencies": {
"axios": "^1.4.0",
"zod": "^3.21.4"
},
"engines": {
"node": ">=16.14"
}
}