-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
48 lines (48 loc) · 1.1 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
{
"name": "cypress-dotenv",
"version": "2.0.0",
"description": "Cypress plugin that enables compatability 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": ">=10.x"
},
"keywords": [
"cypress",
"plugin",
"dotenv",
"cypress-plugin",
"env"
],
"author": "Maurice Williams <https://github.com/morficus>",
"license": "MIT",
"peerDependencies": {
"cypress": ">= 8.x",
"dotenv": ">= 10.x"
},
"devDependencies": {
"cypress": "^8.4.0",
"dotenv": "^10.0.0",
"jest": "^27.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.0"
},
"dependencies": {
"camelcase": "^6.2.0",
"lodash.clonedeep": "^4.5.0",
"dotenv-parse-variables": "^2.0.0"
}
}