UNPKG

chatpickle

Version:
68 lines (67 loc) 2.09 kB
{ "name": "chatpickle", "version": "2.2.3", "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": "^26.0.22", "@types/node": "^14.14.37", "@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": "^26.6.3", "jest-junit": "^12.0.0", "prettier": "^2.2.1", "ts-jest": "^26.5.4", "typescript": "^4.2.3" }, "engines": { "node": "^10 || ^12 || ^14 || ^15 || ^16 || ^18 || ^20 || ^22" }, "jest-junit": { "outputDirectory": "reports", "outputName": "jest-junit.xml" } }