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.
 

70 lines
1.6 KiB

{
"name": "my-name-is-url",
"version": "1.3.2",
"description": "Intelligent URL parser",
"keywords": [
"urls",
"url",
"uri",
"get",
"extract",
"find",
"filter",
"scrape",
"text",
"string",
"browser"
],
"main": "dist/my-name-is-url.js",
"dependencies": {
"tlds": "^1.110.0"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.7.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.6.0",
"codecov": "^3.1.0",
"coveralls": "^3.0.0",
"eslint": "^4.2.0",
"eslint-config-lukechilds": "^1.1.0",
"nyc": "^11.0.2",
"pre-commit": "^1.1.2"
},
"scripts": {
"prebuild": "rm -rf dist",
"build": "babel -d dist src",
"prebuild:map": "npm run prebuild",
"build:map": "babel --source-maps=true -d dist src",
"pretest": "npm run build:map",
"test": "nyc ava test",
"lint": "eslint src",
"coverage": "nyc report --reporter=text-lcov | coveralls && nyc report --reporter=text-lcov > coverage.lcov && codecov",
"prepublish": "npm run build"
},
"pre-commit": [
"lint",
"test"
],
"babel": {
"presets": [
"es2015"
],
"plugins": [
"add-module-exports"
]
},
"eslintConfig": {
"extends": "lukechilds"
},
"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"
}