-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
71 lines (71 loc) · 1.81 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
{
"name": "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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fredx87/cypress-keycloak-commands.git"
},
"keywords": [
"cypress",
"keycloak",
"login",
"openid",
"oauth",
"auth"
],
"author": "Gianluca Frediani <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Fredx87/cypress-keycloak-commands/issues"
},
"homepage": "https://github.com/Fredx87/cypress-keycloak-commands#readme",
"dependencies": {},
"devDependencies": {
"@cypress/webpack-preprocessor": "^4.1.1",
"@testing-library/cypress": "^5.0.2",
"@types/testing-library__cypress": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"cypress": "^3.8.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"husky": "^4.0.10",
"lint-staged": "^10.0.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"semantic-release": "^16.0.4",
"ts-loader": "^6.2.1",
"typescript": "^3.7.5",
"wait-on": "^4.0.0",
"webpack": "^4.41.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{css,md,json,yml}": [
"prettier --write"
],
"*.{ts,tsx,js}": [
"eslint --fix"
]
}
}