This repository has been archived by the owner on Nov 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 1.51 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-iap",
"version": "2.0.1",
"description": "Cypress command to authenticate to Google Identity Aware Proxy(IAP)",
"main": "index.js",
"types": "index.d.ts",
"author": "onXmaps",
"license": "MIT",
"files": [
"visit.js",
"utils.js",
"index.d.ts"
],
"scripts": {
"semantic-release": "semantic-release",
"format": "prettier --write '*.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/onxmaps/cypress-iap.git"
},
"keywords": [
"cypress",
"identity aware proxy",
"iap",
"iap-verification",
"google-authentication"
],
"bugs": {
"url": "https://github.com/onxmaps/cypress-iap/issues"
},
"homepage": "https://github.com/onxmaps/cypress-iap#readme",
"devDependencies": {
"@semantic-release/npm": "^7.0.6",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"semantic-release": "^19.0.0",
"semantic-release-cli": "^5.4.0"
},
"dependencies": {
"google-auth-library": "^6.1.0",
"underscore.string": ">=3.3.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"release": {
"analyzeCommits": {
"branches": [
"master",
"next"
],
"releaseRules": [
{
"type": "docs",
"scope": "readme",
"release": "patch"
}
]
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}