iubenda-consent-solution-api
Version:
API client to implement Iubenda Consent Solution in backend service
68 lines (67 loc) • 2.02 kB
JSON
{
"name": "iubenda-consent-solution-api",
"version": "1.0.1",
"description": "API client to implement Iubenda Consent Solution in backend service",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/rickypid/iubenda-consent-solution-api.git",
"author": "Riccardo Cucia <riccardocucia@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"build": "rimraf dist && ttsc --build tsconfig.prod.json",
"start": "yarn run start:dev",
"test": "nyc mocha --config .mocharc.json lib/**/*.test.ts",
"test:codcov": "nyc mocha --config .mocharc.json lib/**/*.test.ts && nyc report --reporter=text-lcov | codecov --pipe",
"test:watch": "mocha --config .mocharc.json --watch lib/**/*.test.ts",
"lint": "eslint lib/**/*.ts --fix",
"start:dev": "nodemon --config .nodemonrc.json lib/index.ts",
"start:prod": "node dist/index.js",
"prepare": "npm run build"
},
"dependencies": {
"node": "^15.3.0",
"superagent": "^6.1.0"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.10",
"@types/superagent": "^4.1.14",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"chai": "^4.2.0",
"codecov": "^3.8.3",
"eslint": "^7.14.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.2",
"mocha": "^8.2.1",
"nodemon": "^2.0.6",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"ttypescript": "^1.5.12",
"typescript": "^4.1.2",
"typescript-transform-paths": "^2.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
]
},
"keywords": [
"iubenda",
"iubenda-api",
"iubenda-consent-solution",
"consent-solution",
"api",
"client"
]
}