-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.09 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
{
"name": "rfc2231",
"version": "1.3.0",
"description": "Encode and decode rfc2231/rfc5987",
"main": "lib/rfc2231.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "jshint .",
"test": "mocha && npm run lint",
"test:ci": "npm test && npm run coverage && <coverage/lcov.info coveralls",
"coverage": "NODE_ENV=development istanbul cover _mocha -- --reporter dot && echo google-chrome coverage/lcov-report/index.html"
},
"repository": {
"type": "git",
"url": "git://github.com/One-com/rfc2231.git"
},
"keywords": [
"rfc2231",
"rfc6266",
"mime",
"email",
"header",
"subject",
"utf-8",
"non-ascii",
"iconv"
],
"author": "Andreas Lind <andreas@one.com>",
"license": "BSD",
"bugs": {
"url": "https://github.com/One-com/rfc2231/issues"
},
"homepage": "https://github.com/One-com/rfc2231",
"devDependencies": {
"coveralls": "2.11.2",
"iconv": "^3.0.1",
"istanbul": "0.3.5",
"jshint": "2.5.11",
"mocha": "2.1.0",
"unexpected": "5.1.6"
},
"dependencies": {
"iconv-lite": "0.4.5"
}
}