-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
76 lines (76 loc) · 1.87 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
{
"name": "mailosaur",
"version": "8.0.0",
"description": "The Mailosaur Node library lets you integrate email and SMS testing into your continuous integration process.",
"keywords": [
"email",
"sms",
"testing",
"automation",
"selenium",
"webdriver",
"nightwatch"
],
"homepage": "https://github.com/mailosaur/mailosaur-node",
"author": "Mailosaur Ltd <[email protected]> (https://mailosaur.com/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/mailosaur/mailosaur-node.git"
},
"bugs": "https://github.com/mailosaur/mailosaur-node/issues",
"engines": {
"node": ">= v6.0.0"
},
"types": "lib/mailosaur.d.ts",
"main": "lib/mailosaur.js",
"devDependencies": {
"@types/node": "^15.0.3",
"chai": "~4.1.2",
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.20.1",
"mocha": "^9.1.3",
"nodemailer": "~6.4.16",
"typescript": "^4.2.4"
},
"scripts": {
"test": "npm run lint && npm run tsc && node_modules/.bin/_mocha -t 60000",
"lint": "node_modules/.bin/eslint --ext .js .",
"tsc": "node_modules/.bin/tsc lib/mailosaur.d.ts --types node"
},
"eslintConfig": {
"extends": [
"airbnb-base"
],
"env": {
"node": true,
"mocha": 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
}
},
"dependencies": {
"https-proxy-agent": "^5.0.0"
}
}