-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 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
{
"name": "@jeongy-cho/cypress-auto-stub",
"version": "0.1.0",
"description": "Automatically stub requests",
"main": "lib/commands/index.js",
"types": "types/index.d.ts",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeongY-Cho/cypress-auto-stub.git"
},
"keywords": [
"cypress",
"autoMock",
"autoStub",
"mock",
"stub"
],
"author": "Jeong Yeon Cho",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeongY-Cho/cypress-auto-stub/issues"
},
"homepage": "https://github.com/jeongY-Cho/cypress-auto-stub#readme",
"peerDependencies": {
"cypress": "^6.1.0"
},
"devDependencies": {
"@types/node": "^14.14.12",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.1",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
},
"dependencies": {
"cypress": "^6.1.0"
}
}