emailjs-imap-handler
Version:
Parse and compile IMAP commands
51 lines (50 loc) • 1.28 kB
JSON
{
"name": "emailjs-imap-handler",
"version": "3.0.4",
"homepage": "https://github.com/emailjs/emailjs-imap-handler",
"author": "Andris Reinman <andris@kreata.ee>",
"description": "Parse and compile IMAP commands",
"keywords": [
"IMAP",
"compiler"
],
"main": "./dist/handler",
"license": "MIT",
"scripts": {
"build": "./scripts/build.sh",
"lint": "$(npm bin)/standard",
"preversion": "npm run build",
"test": "npm run lint && npm run unit",
"unit": "$(npm bin)/mocha './src/*-unit.js' --reporter spec --require babel-register testutils.js",
"test-watch": "$(npm bin)/mocha './src/*-unit.js' --reporter spec --require babel-register testutils.js --watch"
},
"repository": {
"type": "git",
"url": "git://github.com/emailjs/emailjs-imap-handler.git"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"mocha": "^6.1.4",
"nodemon": "^1.19.1",
"pre-commit": "^1.2.2",
"standard": "^12.0.1"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"beforeEach",
"afterEach",
"after",
"expect"
],
"ignore": [
"dist"
]
}
}