-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
49 lines (49 loc) · 1.13 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
{
"name": "cypress-dotenv",
"version": "3.0.1",
"description": "Cypress plugin that enables compatibility with dotenv",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"test": "jest",
"test:all": "run-s test:unit test:cy",
"test:unit": "jest",
"test:cy": "cypress run",
"pretty": "prettier *.js --write",
"cypress": "cypress open",
"prepublishOnly": "npm test"
},
"repository": "https://github.com/morficus/cypress-dotenv.git",
"homepage": "https://github.com/morficus/cypress-dotenv",
"engines": {
"node": ">=18.17.0",
"npm": ">= 10.x"
},
"keywords": [
"cypress",
"plugin",
"dotenv",
"cypress-plugin",
"env"
],
"author": "Maurice Williams <https://github.com/morficus>",
"license": "MIT",
"peerDependencies": {
"cypress": ">= 10.x",
"dotenv": ">= 10.x"
},
"devDependencies": {
"cypress": "^13.17.0",
"dotenv": "^16.4.7",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2"
},
"dependencies": {
"camelcase": "^6.3.0",
"dotenv-parse-variables": "^2.0.0",
"lodash.clonedeep": "^4.5.0"
}
}