-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.65 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
{
"name": "cypress-plugin-dotenv",
"description": "Load .env variables in Cypress",
"author": "MohamadKh75",
"license": "MIT",
"version": "1.3.0",
"main": "lib/index.js",
"files": [
"lib"
],
"typings": "lib/",
"scripts": {
"dev": "cypress open -C cypress/config.ts -b chrome --e2e",
"test": "cypress run -C cypress/config.ts -b chrome --e2e",
"clean": "rimraf lib",
"build": "tsc",
"release": "pnpm clean && pnpm build && release-it",
"lint": "eslint . --config .eslintrc.json --cache",
"ts-check": "tsc --noEmit",
"prettier": "prettier -c . --config .prettierrc.json",
"format": "prettier -w . --config .prettierrc.json",
"prepare": "husky install"
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"repository": {
"type": "git",
"url": "[email protected]:MohamadKh75/cypress-plugin-dotenv.git"
},
"bugs": {
"url": "https://github.com/MohamadKh75/cypress-plugin-dotenv/issues"
},
"dependencies": {
"dotenv": "^16.3.1"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/node": "^18.17.13",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"cypress": "^13.1.0",
"eslint": "^8.48.0",
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"release-it": "^16.1.5",
"rimraf": "^5.0.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"cypress": ">=10"
},
"keywords": [
"cypress",
"cypress plugin",
"cypress dotenv",
"cypress environment variables",
"env variables",
"environment variables"
]
}