@rudderstack/integrations-lib
Version:
94 lines (93 loc) • 2.56 kB
JSON
{
"name": "@rudderstack/integrations-lib",
"version": "0.2.30",
"description": "",
"main": "build/index.js",
"module": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"copy": "find ./src -name '*.yaml' -o -name '*.csv' | cpio -pdm ./build",
"build:ci": "tsc -p tsconfig.json",
"build:mock": "tsc -p tsconfig.mock.json",
"build": "npm run build:ci && npm run copy && npm run build:mock",
"clean": "rm -rf ./build && rm -rf ./mock",
"clean:build": "npm run clean && npm run build",
"test": "jest --coverage --verbose",
"commit-msg": "commitlint --edit",
"format": "prettier . --write",
"lint:fix": "eslint '**/*.ts' --fix",
"lint": "npm run format && npm run lint:fix",
"prepare": "husky install",
"pre-commit": "npm run test && npx lint-staged"
},
"pre-commit": [
"clean:build",
"test"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rudderlabs/rudder-integrations-lib"
},
"keywords": [
"rudder",
"rudderstack",
"cdp"
],
"author": "RudderStack",
"license": "MIT",
"dependencies": {
"axios": "^1.4.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"fast-xml-parser": "^4.5.0",
"get-value": "^3.0.1",
"handlebars": "^4.7.8",
"jsonschema": "^1.5.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"moment-timezone": "^0.5.43",
"set-value": "^4.1.0",
"sha256": "^0.2.0",
"sqlstring": "^2.3.3",
"tslib": "^2.4.0",
"uuid": "^11.0.5",
"winston": "^3.11.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@commitlint/config-conventional": "^18.5.0",
"@types/get-value": "^3.0.3",
"@types/jest": "^29.5.4",
"@types/lodash": "^4.14.195",
"@types/node": "^20.3.3",
"@types/set-value": "^4.0.1",
"@types/sha256": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"axios-mock-adapter": "^2.1.0",
"commitlint": "^18.6.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^8.0.0",
"jest": "^29.4.3",
"pre-commit": "^1.2.2",
"prettier": "^2.8.4",
"split-string": "^6.1.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{json,js,ts,md,yml}": "prettier --write"
},
"files": [
"build",
"mock",
"LICENSE",
"README.md"
]
}