68 lines
1.7 KiB
JSON
68 lines
1.7 KiB
JSON
{
|
|
"name": "gotenberg-js-client",
|
|
"version": "0.2.0",
|
|
"description": "A simple JS/TS for interacting with a Gotenberg API",
|
|
"author": "Victor Didenko <yumaa.verdin@gmail.com> (https://yumaa.name)",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"gotenberg",
|
|
"pdf",
|
|
"puppeteer",
|
|
"unoconv"
|
|
],
|
|
"scripts": {
|
|
"dev": "ts-node src/index.ts",
|
|
"test": "jest --config jestconfig.json",
|
|
"build": "pika build",
|
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
"lint": "tslint -p tsconfig.json && yarn spell",
|
|
"spell": "yaspeller .",
|
|
"release": "pika publish",
|
|
"version": "yarn build"
|
|
},
|
|
"@pika/pack": {
|
|
"pipeline": [
|
|
[
|
|
"@pika/plugin-ts-standard-pkg"
|
|
],
|
|
[
|
|
"@pika/plugin-build-node",
|
|
{
|
|
"minNodeVersion": "10"
|
|
}
|
|
]
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/yumauri/gotenberg-js-client"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/yumauri/gotenberg-js-client/issues"
|
|
},
|
|
"homepage": "https://github.com/yumauri/gotenberg-js-client#readme",
|
|
"dependencies": {
|
|
"@types/node": "^10.9.0",
|
|
"form-data": "^2.5.1"
|
|
},
|
|
"devDependencies": {
|
|
"@pika/pack": "^0.5.0",
|
|
"@pika/plugin-build-node": "^0.7.0",
|
|
"@pika/plugin-ts-standard-pkg": "^0.7.0",
|
|
"@types/jest": "^24.0.19",
|
|
"jest": "^24.9.0",
|
|
"prettier": "^1.18.2",
|
|
"ts-jest": "^24.1.0",
|
|
"ts-node": "^8.4.1",
|
|
"tslint": "^5.20.0",
|
|
"tslint-config-prettier": "^1.18.0",
|
|
"tslint-config-security": "^1.16.0",
|
|
"tslint-config-standard-plus": "^2.3.0",
|
|
"typescript": "^3.6.4",
|
|
"yaspeller": "^6.0.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.9.0"
|
|
}
|
|
}
|