You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
1.5 KiB

9 years ago
{
"name": "my-name-is-url",
9 years ago
"version": "1.3.1",
"description": "Intelligent URL parser",
"keywords": [
"urls",
"url",
"uri",
"get",
"extract",
"find",
"filter",
"scrape",
"text",
"string",
"browser"
],
9 years ago
"main": "dist/my-name-is-url.js",
"dependencies": {
"tlds": "^1.110.0"
},
9 years ago
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"codeclimate-test-reporter": "^0.3.1",
"coveralls": "^2.11.9",
9 years ago
"eslint": "^2.8.0",
"mocha": "^2.4.5",
"nyc": "^6.4.0",
9 years ago
"pre-commit": "^1.1.2"
},
"scripts": {
"prebuild": "rm -rf dist",
"build": "babel -d dist src",
"pretest": "npm run build",
"test": "nyc mocha test",
9 years ago
"lint": "eslint src",
"coverage": "nyc report --reporter=text-lcov | coveralls && nyc report --reporter=text-lcov | codeclimate-test-reporter",
9 years ago
"prepublish": "npm run build"
},
"pre-commit": [
"lint",
"test"
],
"babel": {
"presets": [
"es2015"
],
"plugins": [
"add-module-exports"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukechilds/my-name-is-url.git"
},
"author": "Luke Childs <lukechilds123@gmail.com> (http://lukechilds.co.uk)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lukechilds/my-name-is-url/issues"
},
"homepage": "https://github.com/lukechilds/my-name-is-url"
}