forked from Fredx87/cypress-keycloak-commands
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 1.93 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@svalabs/cypress-keycloak-commands",
"version": "0.1.0",
"description": "Cypress commands for login with Keycloak",
"main": "dist/index.js",
"files": [
"dist",
"index.d.ts"
],
"types": "index.d.ts",
"scripts": {
"clean": "rimraf dist/*",
"build": "npm run clean && tsc",
"test": "wait-on http://localhost:8081/auth && npm run cy:run",
"lint": "eslint . --cache --fix --ext .ts,.tsx,.js",
"format": "prettier --write \"**/*.{js,ts,css,md,yml}\"",
"cy:open": "cypress open",
"cy:run": "cypress run",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/svalabs/cypress-keycloak-commands.git"
},
"keywords": [
"cypress",
"keycloak",
"login",
"openid",
"oauth",
"auth"
],
"author": "Gianluca Frediani <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/svalabs/cypress-keycloak-commands/issues"
},
"homepage": "https://github.com/svalabs/cypress-keycloak-commands#readme",
"devDependencies": {
"@cypress/webpack-preprocessor": "^5.16.1",
"@testing-library/cypress": "^9.0.0",
"@types/testing-library__cypress": "^5.0.9",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"all-contributors-cli": "^6.24.0",
"cypress": "^12.3.0",
"eslint": "^8.31.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.8.2",
"rimraf": "^3.0.2",
"semantic-release": "^20.0.2",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"wait-on": "^7.0.1",
"webpack": "^5.75.0"
},
"lint-staged": {
"*.{css,md,json,yml}": [
"prettier --write"
],
"*.{ts,tsx,js}": [
"eslint --fix"
]
},
"engines": {
"node": ">= 18.0.0"
},
"publishConfig": {
"access": "public"
}
}