chatpickle
Version:
Conversation Tests for Chatbots
68 lines (67 loc) • 2.05 kB
JSON
{
"name": "chatpickle",
"version": "2.3.6",
"description": "Conversation Tests for Chatbots",
"keywords": [
"BDD",
"Chatbot",
"Conversation",
"Testing",
"Cucumber",
"AWS",
"Amazon",
"Lex"
],
"author": "Aaron Arsenault",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/libertymutual/chatpickle"
},
"files": [
"dist"
],
"bin": {
"chatpickle": "dist/cli.js"
},
"scripts": {
"build": "rm -rf dist/* && npm run build:typescript && npm run build:other",
"build:typescript": "tsc && chmod +x dist/cli.js",
"build:other": "cp -r src/cucumberSupport dist/cucumberSupport",
"start": "npm run example:lex",
"example:lex": "npm run build && node dist/cli.js --cpPath examples/lex/",
"example:custom": "npm run build && node dist/cli.js --cpPath examples/custom/",
"test": "jest --reporters=default --reporters=jest-junit",
"lint": "eslint \"{scripts,src,test}/**/*.{js,ts}\"",
"lint:fix": "eslint --fix \"{scripts,src,test}/**/*.{js,ts}\"",
"prepublish": "npm run build"
},
"dependencies": {
"aws-sdk": "^2.880.0",
"chai": "^4.3.4",
"cucumber": "^6.0.5",
"lodash.get": "^4.4.2",
"regex-parser": "^2.2.11"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.19.33",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^2.2.1",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"engines": {
"node": "^20 || ^22 || ^24"
},
"jest-junit": {
"outputDirectory": "reports",
"outputName": "jest-junit.xml"
}
}