-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 728 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 728 Bytes
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
{
"name": "@v9v/nodejs-bot-engine",
"version": "2.1.1",
"description": "Node.js bot engine",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && npx typescript",
"prepublish": "npm run build",
"test": "jest --watch",
"coverage": "jest --coverage"
},
"author": "Yuri Vasilchikov",
"license": "ISC",
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/jest": "^24.0.25",
"@types/node": "^13.1.4",
"@types/node-telegram-bot-api": "^0.40.1",
"jest": "^24.9.0",
"ts-jest": "^24.3.0",
"tslint": "^5.20.1",
"typescript": "^3.7.4"
},
"dependencies": {
"dotenv": "^8.2.0",
"node-telegram-bot-api": "^0.40.0"
}
}