This repository has been archived by the owner on Aug 4, 2021. It is now read-only.
forked from telegraf/telegraf-i18n
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
89 lines (89 loc) · 1.83 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "telegraf-i18n",
"version": "6.6.0",
"description": "Telegraf i18n engine",
"keywords": [
"telegram bot",
"grammy",
"telegraf",
"bot framework",
"i18n",
"internationalization",
"middleware"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/telegraf/telegraf-i18n/issues"
},
"homepage": "https://github.com/telegraf/telegraf-i18n#readme",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/telegraf/telegraf-i18n.git"
},
"author": "Vitaly Domnikov <oss@vitaly.codes>",
"scripts": {
"build": "del-cli dist && tsc",
"prepack": "npm run build",
"start": "ts-node examples/example-bot.ts",
"test": "tsc --sourceMap && xo && nyc ava"
},
"type": "commonjs",
"engines": {
"node": ">=12"
},
"dependencies": {
"compile-template": "^0.3.1",
"debug": "^4.0.1",
"js-yaml": "^4.0.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^1.0.1",
"@types/js-yaml": "^4.0.0",
"@types/node": "^16.0.0",
"ava": "^3.0.0",
"del-cli": "^4.0.0",
"grammy": "^1.2.0",
"nyc": "^15.0.0",
"telegraf": "^4.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.2.3",
"xo": "^0.42.0"
},
"files": [
"dist/source",
"!*.test.*"
],
"main": "dist/source",
"types": "dist/source",
"nyc": {
"all": true,
"reporter": [
"lcov",
"text"
]
},
"xo": {
"semicolon": false,
"space": true,
"rules": {
"@typescript-eslint/prefer-readonly-parameter-types": "warn",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-call": "off",
"unicorn/prefer-module": "off",
"unicorn/prefer-node-protocol": "off",
"ava/no-ignored-test-files": "off"
},
"overrides": [
{
"files": [
"**/*.test.*",
"examples/**/*.*",
"test/**/*.*"
],
"rules": {
"@typescript-eslint/prefer-readonly-parameter-types": "off"
}
}
]
}
}