-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.46 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.46 KB
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
60
{
"name": "rfc2047",
"version": "4.0.1",
"description": "Encode and decode rfc2047 (MIME encoded words)",
"main": "lib/rfc2047.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint . && prettier --check '**/*.{js,md,json}'",
"test": "mocha",
"test:ci": "npm run coverage",
"coverage": "nyc --reporter=lcov --reporter=text --all -- npm test && echo google-chrome coverage/lcov-report/index.html"
},
"repository": {
"type": "git",
"url": "git://github.com/One-com/rfc2047.git"
},
"keywords": [
"rfc2047",
"mime",
"email",
"header",
"subject",
"utf-8",
"non-ascii",
"iconv"
],
"author": "Andreas Lind <andreaslindpetersen@gmail.com>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/One-com/rfc2047/issues"
},
"homepage": "https://github.com/One-com/rfc2047",
"devDependencies": {
"coveralls": "^2.11.2",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"iconv": "^3.0.0",
"mocha": "2.1.0",
"nyc": "^15.1.0",
"prettier": "~2.4.1",
"proxyquire": "^2.1.3",
"unexpected": "10.20.0"
},
"dependencies": {
"iconv-lite": "0.4.5"
},
"nyc": {
"include": [
"lib/**"
]
}
}