forked from emailjs/emailjs-mime-builder
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.34 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
{
"name": "emailjs-mime-builder",
"version": "2.0.5",
"homepage": "https://github.com/emailjs/emailjs-mime-builder",
"description": "emailjs-mime-builder is a low level rfc2822 message composer. Define your own mime tree, no magic included.",
"author": "Andris Reinman <andris@kreata.ee>",
"keywords": [
"RFC2822",
"mime"
],
"license": "MIT",
"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"
},
"repository": {
"type": "git",
"url": "git://github.com/emailjs/emailjs-mime-builder.git"
},
"main": "dist/builder",
"dependencies": {
"emailjs-addressparser": "^2.0.2",
"emailjs-mime-codec": "^2.0.8",
"emailjs-mime-types": "^2.0.0",
"punycode": "1.4.1",
"ramda": "^0.25.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"mocha": "^5.0.0",
"pre-commit": "^1.2.2",
"standard": "^11.0.1"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"beforeEach",
"afterEach",
"after",
"expect"
],
"ignore": [
"dist"
]
}
}