forked from emailjs/emailjs-imap-client
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
72 lines (72 loc) · 1.91 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
{
"name": "emailjs-imap-client",
"version": "3.1.0",
"homepage": "https://github.com/emailjs/emailjs-imap-client",
"description": "JavaScript IMAP client",
"author": "Andris Reinman <andris@kreata.ee>",
"keywords": [
"IMAP"
],
"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 --exit './src/*.unit.js' --reporter spec --require @babel/register testutils.js",
"integration": "$(npm bin)/mocha --exit './src/*.integration.js' --reporter spec --require @babel/register testutils.js",
"build-worker": "./scripts/worker.sh"
},
"repository": {
"type": "git",
"url": "git://github.com/emailjs/emailjs-imap-client.git"
},
"main": "dist/index",
"dependencies": {
"dc-polyfill": "^0.1.3",
"emailjs-addressparser": "^2.0.2",
"emailjs-base64": "^1.1.4",
"emailjs-imap-handler": "^3.0.2",
"emailjs-mime-codec": "^2.0.8",
"emailjs-tcp-socket": "https://github.com/pipedrive/emailjs-tcp-socket/tarball/v3.0.0",
"emailjs-utf7": "^4.0.1",
"pako": "^1.0.10",
"ramda": "^0.26.1"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.8.3",
"babel-loader": "^8.0.6",
"babel-plugin-inline-import": "^3.0.0",
"chai": "^4.2.0",
"hoodiecrow-imap": "^2.1.0",
"mocha": "^7.0.1",
"pre-commit": "^1.2.2",
"sinon": "^8.0.0",
"standard": "^13.0.1",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.3"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"beforeEach",
"afterEach",
"after",
"expect",
"sinon",
"self",
"Worker",
"URL",
"Blob"
],
"ignore": [
"dist",
"res"
]
}
}