hreftypes
Version:
Figure out what type a href is. Useful to help resolve URI's between assets on a site
59 lines (58 loc) • 1.63 kB
JSON
{
"name": "hreftypes",
"description": "Figure out what type a href is. Useful to help resolve URI's between assets on a site",
"repository": "git://github.com/assetgraph/hreftypes.git",
"version": "1.0.1",
"license": "BSD-3-Clause",
"maintainers": [
{
"name": "Peter Müller",
"email": "munter@fumle.dk"
},
{
"name": "Andreas Lind",
"email": "andreaslindpetersen@gmail.com"
}
],
"files": [
"lib"
],
"keywords": [
"href",
"hreftype",
"assetgraph"
],
"dependencies": {},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^6.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^6.2.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"magicpen-prism": "3.0.2",
"mocha": "^6.0.0",
"nyc": "^14.0.0",
"offline-github-changelog": "^1.6.1",
"prettier": "~1.18.2",
"unexpected": "^11.0.0-1"
},
"main": "lib/index.js",
"types": "types.d.ts",
"scripts": {
"lint": "eslint . && prettier --check '**/*.js'",
"test": "mocha",
"ci": "npm run lint && npm run coverage",
"coverage": "NODE_ENV=test nyc --reporter=lcov --reporter=text --all -- mocha --reporter dot && echo google-chrome coverage/lcov-report/index.html",
"changelog": "offline-github-changelog --next=${npm_package_version} > CHANGELOG.md && git add CHANGELOG.md",
"preversion": "npm run changelog"
},
"nyc": {
"include": [
"lib/**"
]
}
}