-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
47 lines (47 loc) · 1.02 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
{
"name": "superagent-charset",
"version": "1.2.0",
"description": "add charset support for node's superagent",
"main": "index.js",
"dependencies": {
"iconv-lite": "^0.4.17"
},
"scripts": {
"test": "mocha",
"test-cover": "istanbul cover _mocha -- -R spec -u exports",
"report-cover": "codecov"
},
"repository": {
"type": "git",
"url": "[email protected]:magicdawn/superagent-charset.git"
},
"keywords": [
"superagent",
"encoding",
"charset",
"gbk",
"gb2312",
"iconv"
],
"author": "magicdawn",
"license": "MIT",
"bugs": {
"url": "https://github.com/magicdawn/superagent-charset/issues"
},
"homepage": "https://github.com/magicdawn/superagent-charset",
"devDependencies": {
"codecov": "^3.0.0",
"eslint": "^4.18.2",
"istanbul": "^1.1.0-alpha.1",
"koa": "^2.5.0",
"mocha": "^5.0.4",
"should": "^13.2.1",
"superagent": "^3.8.2",
"superagent-proxy": "^1.0.3"
},
"files": [
"index.js",
"package.json",
"README.md"
]
}