package.json
1.3 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": "urlencode",
"version": "1.1.0",
"description": "encodeURIComponent with charset",
"main": "lib/urlencode.js",
"files": [
"lib"
],
"scripts": {
"test": "mocha -R spec -t 20000 -r should test/*.test.js",
"test-cov": "istanbul cover node_modules/.bin/_mocha -- -t 20000 -r should test/*.test.js",
"test-travis": "istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 20000 -r should test/*.test.js",
"jshint": "jshint .",
"autod": "autod -w --prefix '~' -t test -e examples",
"cnpm": "npm install --registry=https://registry.npm.taobao.org",
"benchmark": "node benchmark/urlencode.js && node benchmark/urlencode.decode.js"
},
"dependencies": {
"iconv-lite": "~0.4.11"
},
"devDependencies": {
"autod": "*",
"beautify-benchmark": "*",
"benchmark": "*",
"blanket": "*",
"contributors": "*",
"istanbul": "~0.3.17",
"jshint": "*",
"mocha": "*",
"should": "7"
},
"homepage": "https://github.com/node-modules/urlencode",
"repository": {
"type": "git",
"url": "git://github.com/node-modules/urlencode.git"
},
"keywords": [
"urlencode",
"urldecode",
"encodeURIComponent",
"decodeURIComponent",
"querystring",
"parse"
],
"author": "fengmk2 <fengmk2@gmail.com>",
"license": "MIT"
}