Skip to content
Snippets Groups Projects
Verified Commit 5b8d7b4c authored by Dmytro Bogatov's avatar Dmytro Bogatov :two_hearts:
Browse files

Prepare publishing.

parent b26d9647
Branches
No related tags found
No related merge requests found
Pipeline #7110 passed
{
"name": "@dbogatov/broken-links-inspector",
"version": "0.1.2",
"version": "0.2.0",
"description": "Extract and recursively check all URLs reporting broken ones",
"main": "index.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "test"
},
......@@ -10,7 +11,9 @@
"clean": "rm -rf .nyc_output coverage dist test-results.xml",
"test": "mocha --reporter spec -r ts-node/register test/**/*.ts",
"test-junit": "mocha --reporter mocha-junit-reporter -r ts-node/register test/**/*.ts",
"coverage": "nyc --reporter=html --reporter=cobertura --reporter=text -e .ts -n \"src/**/*.ts\" -x \"test/**/*.ts\" npm run test-junit"
"coverage": "nyc --reporter=html --reporter=cobertura --reporter=text -e .ts -n \"src/**/*.ts\" -x \"test/**/*.ts\" npm run test-junit",
"build": "tsc",
"prepare": "npm run build"
},
"publishConfig": {
"@dbogatov:registry": "https://git.dbogatov.org/api/v4/projects/227/packages/npm/"
......
......@@ -9,12 +9,14 @@
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": true,
"sourceMap": true
"sourceMap": true,
"declaration": true
},
"include": [
"src/**/*",
],
"exclude": [
"node_modules"
"node_modules",
"dist"
]
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment