36 lines
865 B
JSON
36 lines
865 B
JSON
{
|
|
"name": "url-toolkit",
|
|
"version": "2.1.2",
|
|
"description": "Build an absolute URL from a base URL and a relative URL (RFC 1808). No dependencies!",
|
|
"main": "src/url-toolkit.js",
|
|
"types": "src/url-toolkit.d.ts",
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"scripts": {
|
|
"pretest": "npm run lint",
|
|
"test": "mocha --recursive test",
|
|
"lint": "jshint src/ test/"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/tjenkinson/url-toolkit.git"
|
|
},
|
|
"keywords": [
|
|
"url",
|
|
"relative",
|
|
"absolute",
|
|
"parser"
|
|
],
|
|
"author": "Tom Jenkinson <tjcode@outlook.com>",
|
|
"license": "Apache-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/tjenkinson/url-toolkit/issues"
|
|
},
|
|
"homepage": "https://github.com/tjenkinson/url-toolkit#readme",
|
|
"devDependencies": {
|
|
"jshint": "^2.9.4",
|
|
"mocha": "^4.0.1"
|
|
}
|
|
}
|