html-pagination/package.json
2021-08-03 10:10:19 +03:00

40 lines
1.0 KiB
JSON

{
"name": "html-pagination",
"version": "1.0.0",
"description": "Package for html document pagination to fit container with fixed width",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"./lib/**/*"
],
"scripts": {
"build": "tsc",
"test": "jest --config jestconfig.json --passWithNoTests",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dm1sh/html-pagination.git"
},
"keywords": [
"pagination",
"books"
],
"author": "dm1sh",
"license": "MIT",
"bugs": {
"url": "https://github.com/dm1sh/html-pagination/issues"
},
"homepage": "https://github.com/dm1sh/html-pagination#readme",
"devDependencies": {
"@types/jest": "^26.0.24",
"jest": "^27.0.6",
"ts-jest": "^27.0.4",
"typescript": "^4.3.5"
}
}