forked from mscdex/node-imap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 911 Bytes
/
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
{
"name": "@codeplant/imap",
"version": "1.0.0",
"author": "Brian White <[email protected]>",
"description": "An IMAP module for node.js that makes communicating with IMAP servers easy",
"main": "./lib/Connection",
"scripts": {
"test": "node test/test.js",
"postpublish": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags"
},
"engines": {
"node": ">=10.0.0"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/mscdex/node-imap/raw/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "http://github.com/mscdex/node-imap.git"
},
"dependencies": {
"@codeplant/utf7": "^2.0.0"
},
"volta": {
"node": "18.13.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}