-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1 KB
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
{
"name": "tock-node",
"version": "24.9.1",
"description": "Nodejs framework to create stories for Tock chatbots",
"repository": {
"type": "git",
"url": "https://github.com/theopenconversationkit/tock-node.git"
},
"main": "dist/index.js",
"files": [
"dist/"
],
"author": "François Nguyen <https://github.com/phurytw>",
"license": "MIT",
"scripts": {
"build": "tsc",
"prepare": "tsc",
"version": "auto-changelog -p && git add CHANGELOG.md",
"test-release": "np --preview",
"release": "np"
},
"homepage": "https://github.com/theopenconversationkit/tock-node",
"dependencies": {
"websocket": "^1.0.29"
},
"devDependencies": {
"@types/node": "^12.7.4",
"@types/websocket": "^0.0.40",
"auto-changelog": "^2.0.0",
"np": "^8.0.4",
"typescript": "^3.6.2"
},
"auto-changelog": {
"includeBranch": [
"master"
]
},
"engines": {
"node": ">=20.10.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}