forked from petkaantonov/urlparser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.1 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
{
"name": "@kamilkisiela/fast-url-parser",
"description": "Extremely fast implementation of node core url library",
"version": "1.1.4",
"keywords": [
"fast",
"parse",
"parser",
"url",
"uri",
"performance"
],
"scripts": {
"test": "npm run jshint && node ./test/index.js | tap-spec",
"dot": "node ./test/index.js | tap-dot",
"bench": "node ./benchmark/urlparser.js",
"bench-node": "node ./benchmark/nodecore.js",
"jshint": "jshint --verbose ./src/*"
},
"homepage": "https://github.com/petkaantonov/urlparser",
"repository": {
"type": "git",
"url": "git://github.com/petkaantonov/urlparser.git"
},
"bugs": {
"url": "http://github.com/petkaantonov/urlparser/issues"
},
"license": "MIT",
"author": {
"name": "Petka Antonov",
"email": "[email protected]",
"url": "http://github.com/petkaantonov/"
},
"devDependencies": {
"jshint": "^2.5.10",
"querystringparser": "^0.1.1",
"tap-dot": "^0.2.3",
"tap-spec": "^2.1.1",
"tape": "^3.0.3"
},
"readmeFilename": "README.md",
"main": "./src/urlparser.js"
}