-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.18 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
{
"name": "opengram",
"version": "0.5.0",
"description": "Telegram Bot Library based on Telegraf 3.x",
"license": "MIT",
"author": "Vitaly Domnikov <oss@vitaly.codes>",
"homepage": "https://github.com/OpengramJS/opengram#readme",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:OpengramJS/opengram.git"
},
"bugs": {
"url": "https://github.com/OpengramJS/opengram/issues"
},
"main": "src/index.js",
"files": [
"src/core/**/*.js",
"src/scenes/**/*.js",
"src/types/*.js",
"src/*.js",
"*.json"
],
"scripts": {
"lint": "eslint .",
"test": "ava",
"cover": "c8 npm test",
"generate-exceptions": "node ./scripts/generate-exceptions.js",
"precommit": "npm run lint && npm test && npm run remark",
"remark": "npx remark README.md",
"docs": "jsdoc --configure .jsdoc.json",
"json-docs": "jsdoc --template ./node_modules/jsdoc-json --destination docs/docs.json --recurse src",
"prepare": "husky install"
},
"type": "commonjs",
"engines": {
"node": ">=16"
},
"ava": {
"files": [
"test/*",
"!test/utils.js"
]
},
"dependencies": {
"debug": "^4.3.4",
"node-fetch": "^2.7.0",
"sandwich-stream": "^2.0.2"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@jsdoc/eslint-config": "^1.1.11",
"ava": "^4.3.3",
"clean-jsdoc-theme": "^4.2.13",
"eslint": "^8.36.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-ava": "^13.2.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^39.9.1",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^8.0.3",
"c8": "^7.14.0",
"jsdoc": "^4.0.2",
"jsdoc-json": "^2.0.2",
"prettier": "^3.0.2",
"remark-cli": "^11.0.0",
"remark-preset-lint-consistent": "^5.1.2",
"remark-preset-lint-recommended": "^6.1.3",
"ejs": "^3.1.9"
},
"keywords": [
"opengram",
"telegraf",
"telegram",
"telegram bot api",
"bot",
"botapi",
"bot framework"
],
"volta": {
"node": "16.20.2"
}
}