forked from babangsund/cypress-keycloak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 926 Bytes
/
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
{
"license": "MIT",
"version": "1.5.0",
"author": "babangsund",
"main": "dist/index.js",
"name": "cypress-keycloak",
"module": "dist/index.esm.js",
"description": "Cypress commands for Keycloak",
"repository": "https://github.com/babangsund/cypress-keycloak",
"scripts": {
"build": "NODE_ENV=production rollup -c",
"watch": "NODE_ENV=development rollup -c -w",
"prettier": "prettier --write 'src/**'",
"lint": "eslint src/"
},
"peerDependencies": {
"cypress": "^5.6.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"cypress": "^5.6.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.9.0",
"prettier": "^2.0.5",
"rollup": "^2.21.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript": "^1.0.1",
"typescript": "^3.7.4"
}
}