@kth/cortina-block
Version:
Node.js module for fetching Cortina blocks and optionally cache using Redis.
72 lines (71 loc) • 1.57 kB
JSON
{
"name": "@kth/cortina-block",
"version": "7.2.1",
"description": "Node.js module for fetching Cortina blocks and optionally cache using Redis.",
"main": "dist/index.js",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint \"**/*.js\" --quiet",
"lint-v": "eslint \"**/*.js\" ",
"test": "jest",
"test:watch": "jest --watch",
"build": "npm ci && tsc",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KTH/kth-node-cortina-block.git"
},
"keywords": [
"node",
"kth",
"cortina",
"blocks"
],
"author": {
"name": "KTH",
"email": "infosys@kth.se",
"url": "https://github.com/KTH"
},
"license": "MIT",
"dependencies": {
"@kth/log": "^4.0.8",
"kth-node-redis": "^4.0.0"
},
"devDependencies": {
"@kth/eslint-config-kth": "^3.6.0",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^22.19.1",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"// (jest)": "configuration for jest",
"jest": {
"preset": "ts-jest",
"clearMocks": true,
"notifyMode": "failure-change",
"testEnvironment": "node",
"verbose": true
},
"engines": {
"node": ">=18.0.0"
}
}