forked from emailjs/emailjs-mime-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.5 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
{
"name": "@adamjlow/emailjs-mime-parser",
"version": "2.0.8",
"homepage": "https://github.com/emailjs/emailjs-mime-parser",
"description": "Parse a mime tree, no magic included.",
"author": "Andris Reinman <andris@kreata.ee>",
"keywords": [
"mime"
],
"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/adamjlow/emailjs-mime-parser.git"
},
"main": "dist/mimeparser",
"dependencies": {
"emailjs-addressparser": "^2.0.3",
"emailjs-mime-codec": "^2.0.9",
"ramda": "^0.28.0"
},
"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",
"sinon": "^7.3.2",
"standard": "^12.0.1",
"text-encoding": "^0.7.0"
},
"standard": {
"globals": [
"sinon",
"describe",
"it",
"before",
"beforeEach",
"afterEach",
"after",
"expect"
],
"ignore": [
"dist"
]
},
"bugs": {
"url": "https://github.com/adamjlow/emailjs-mime-parser/issues"
}
}