-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
86 lines (86 loc) · 2.22 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "cypress-mailosaur",
"version": "2.0.0",
"description": "Extends Cypress' cy commands that let you integrate email and SMS testing into your continuous integration process.",
"keywords": [
"cypress",
"mailosaur",
"email",
"sms",
"testing",
"automation",
"testing-tools"
],
"author": "Mailosaur Ltd",
"license": "MIT",
"repository": "https://github.com/mailosaur/cypress-mailosaur",
"bugs": "https://github.com/mailosaur/mailosaur-node/issues",
"files": [
"src"
],
"main": "index.js",
"types": "src/mailosaurCommands.d.ts",
"scripts": {
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "node_modules/.bin/eslint src test/react-app/src test/react-app/cypress",
"lint:fix": "node_modules/.bin/eslint --fix src test/react-app/src test/react-app/cypress",
"test": "npm run tsc && cd test/react-app && npm run test:ci",
"test:ci": "cd test/react-app && npm i && npm run test:ci",
"tsc": "node_modules/.bin/tsc src/mailosaurCommands.d.ts --types node"
},
"peerDependencies": {
"cypress": ">= 2.1.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@types/node": "^18.13.0",
"babel-eslint": "10.1.0",
"coveralls": "^3.1.1",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.4.2",
"sinon": "15.0.1",
"typescript": "^4.9.5"
},
"engines": {
"node": ">= v10.0.0"
},
"eslintConfig": {
"extends": [
"airbnb-base"
],
"env": {
"node": true,
"mocha": true
},
"globals": {
"Cypress": true,
"cy": true
},
"rules": {
"quotes": [
2,
"single",
{
"allowTemplateLiterals": true
}
],
"consistent-return": 0,
"comma-dangle": 0,
"max-len": 0,
"no-shadow": 0,
"class-methods-use-this": 0,
"linebreak-style": 0,
"arrow-parens": 0,
"operator-linebreak": 0,
"object-curly-newline": 0,
"implicit-arrow-linebreak": 0,
"no-else-return": 0,
"indent": 0,
"lines-between-class-members": 0
}
}
}