-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
51 lines (51 loc) · 1.42 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
{
"name": "convoflow",
"version": "1.14.0",
"description": "chatbot builder framework",
"main": "./dist/main.js",
"types": "./dist/main.d.ts",
"scripts": {
"clear": "rimraf ./dist",
"build": "tsc -p ./tsconfig.json",
"start": "npm run clear && npm run build && node ./dist/main.js",
"test": "jest",
"lint": "eslint . --ext .ts",
"postinstall": "npm run clear && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arnaldobadin/convoflow"
},
"author": "Arnaldo Badin",
"license": "GPLv3",
"bugs": {
"url": "https://github.com/arnaldobadin/convoflow/issues"
},
"homepage": "github.com/arnaldobadin/convoflow",
"dependencies": {
"@types/lodash": "^4.17.4",
"@types/node": "^14.0.14",
"@types/uuid": "^8.0.0",
"lodash": "^4.17.21",
"rimraf": "^3.0.2",
"uuid": "^8.2.0"
},
"keywords": [
"chatbot",
"bot",
"chatbot builder",
"bot builder",
"chatbot builder framework",
"chatbots",
"bots"
],
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.3",
"typescript": "^5.4.5"
}
}