-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
56 lines (56 loc) · 1.44 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
{
"name": "emailjs-smtp-client",
"version": "2.0.1",
"homepage": "https://github.com/emailjs/emailjs-smtp-client",
"description": "SMTP Client allows you to connect to an SMTP server in JS.",
"author": "Andris Reinman <[email protected]>",
"keywords": [
"SMTP"
],
"license": "MIT",
"scripts": {
"build": "./scripts/build.sh",
"lint": "$(npm bin)/standard",
"preversion": "npm run build",
"test": "npm run lint && npm run unit && npm run integration",
"unit": "$(npm bin)/mocha './src/*-unit.js' --reporter spec --require babel-register testutils.js",
"integration": "$(npm bin)/mocha './src/*-integration.js' --reporter spec --require babel-register testutils.js"
},
"repository": {
"type": "git",
"url": "git://github.com/emailjs/emailjs-smtp-client.git"
},
"main": "dist/client",
"dependencies": {
"emailjs-base64": "^1.1.4",
"emailjs-tcp-socket": "^2.0.2",
"text-encoding": "^0.7.0",
"winston": "^3.2.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"mocha": "^6.1.4",
"pre-commit": "^1.2.2",
"sinon": "^7.3.2",
"smtp-server": "^3.5.0",
"standard": "^12.0.1"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"beforeEach",
"afterEach",
"after",
"expect",
"sinon"
],
"ignore": [
"dist"
]
}
}