-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.88 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
{
"name": "@opengram/media-group",
"version": "1.0.3",
"description": "The media-group plugin lets you handle & copy media-groups (albums) with ease.",
"main": "src/index.js",
"scripts": {
"lint": "eslint .",
"test": "echo \"No tests\"",
"cover": "c8 npm test",
"precommit": "npm run lint && npm test && npm run remark",
"remark": "npx remark README.md --use remark-preset-lint-consistent --use remark-preset-lint-recommended",
"prepare": "husky install",
"docs": "jsdoc --configure .jsdoc.json"
},
"files": [
"src/*.js",
"*[!.jsdoc|.c8rc].json"
],
"engines": {
"node": ">=16"
},
"type": "commonjs",
"repository": {
"type": "git",
"url": "git+https://github.com/OpengramJS/media-group.git"
},
"ava": {
"files": [
"test/*",
"!test/utils.js"
]
},
"dependencies": {
"debug": "^4.3.4"
},
"devDependencies": {
"clean-jsdoc-theme": "^4.2.7",
"opengram": "^0.2.0-beta.1",
"ava": "^4.3.3",
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@jsdoc/eslint-config": "^1.1.11",
"eslint": "^8.18.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-ava": "^13.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.25",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^8.0.3",
"c8": "^7.12.0",
"remark-cli": "^11.0.0",
"remark-preset-lint-consistent": "^5.1.1",
"remark-preset-lint-recommended": "^6.1.2"
},
"author": "Maxim Tsialehin",
"license": "MIT",
"bugs": {
"url": "https://github.com/OpengramJS/media-group/issues"
},
"homepage": "https://github.com/OpengramJS/media-group#readme",
"keywords": [
"opengram",
"telegraf",
"media",
"group",
"opengram-media-group"
]
}