-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
67 lines (67 loc) · 2.03 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "chatpickle",
"version": "2.2.2",
"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"
},
"jest-junit": {
"outputDirectory": "reports",
"outputName": "jest-junit.xml"
}
}