-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.78 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.78 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@opengram/arguments",
"version": "1.0.2",
"description": "The arguments plugin lets you parse & validate arguments of commands / inline query with ease.",
"main": "src/index.js",
"scripts": {
"lint": "eslint .",
"test": "ava",
"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"
},
"files": [
"src/*.js",
"*.json"
],
"engines": {
"node": ">=16"
},
"type": "commonjs",
"repository": {
"type": "git",
"url": "git+https://github.com/OpengramJS/arguments.git"
},
"ava": {
"files": [
"test/*",
"!test/utils.js"
]
},
"devDependencies": {
"opengram": "^0.1.0",
"ava": "^4.3.0",
"joi": "^17.7.0",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@jsdoc/eslint-config": "^1.1.10",
"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.2.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^8.0.3",
"c8": "^7.12.0",
"remark-cli": "^10.0.1",
"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/arguments/issues"
},
"homepage": "https://github.com/OpengramJS/arguments#readme",
"keywords": [
"opengram",
"telegraf",
"opengram-command-parts",
"opengram-args",
"opengram-arguments"
]
}