-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
37 lines (37 loc) · 850 Bytes
/
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
{
"name": "uri-parse",
"version": "1.0.0",
"description": "Mini data-uri parser for nodejs and browser. No dependencies!",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"coverage": "nyc npm test && nyc report --reporter=lcov",
"test": "mocha test.js",
"perf": "node benchmark.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hustcc/uri-parse.git"
},
"keywords": [
"uri-parse",
"data-uri",
"url-parse"
],
"author": "hustcc",
"license": "MIT",
"bugs": {
"url": "https://github.com/hustcc/uri-parse/issues"
},
"homepage": "https://github.com/hustcc/uri-parse#readme",
"devDependencies": {
"benchmark": "^2.1.4",
"coveralls": "^2.11.6",
"expect": "^1.14.0",
"mocha": "^2.4.5",
"nyc": "^5.6.0",
"url-parse": "^1.2.0"
}
}