UNPKG

emailjs-utf7

Version:

Converts text to and from UTF-7 (RFC 2152 and IMAP)

54 lines (53 loc) 1.31 kB
{ "name": "emailjs-utf7", "main": "dist/utf7.js", "version": "4.0.1", "homepage": "https://github.com/emailjs/emailjs-utf7", "author": "Konstantin Käfer", "description": "Converts text to and from UTF-7 (RFC 2152 and IMAP)", "keywords": [ "IMAP", "RFC2152", "UTF7" ], "scripts": { "build": "./scripts/build.sh", "release": "./scripts/release.sh", "lint": "$(npm bin)/standard", "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-utf7.git" }, "license": "MIT", "dependencies": { "emailjs-base64": "^1.1.2" }, "devDependencies": { "babel-cli": "^6.26.0", "babel-preset-es2015": "^6.24.1", "babel-register": "^6.26.0", "chai": "^4.1.2", "mocha": "^4.0.1", "nodemon": "^1.12.1", "pre-commit": "^1.2.2", "standard": "^10.0.3" }, "standard": { "globals": [ "describe", "it", "before", "beforeAll", "afterAll", "after", "expect" ], "ignore": [ "dist" ] } }