-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.5 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "prosto-diary",
"version": "0.0.1",
"description": "Global Virtual assistant: your personal all-in-one secretary: Telegram Bot Edition",
"publisher": "GIC DAO",
"homepage": "https://prosto-diary.gotointeractive.com",
"main": "src/index.cjs",
"workspaces": [
"src/*",
"scripts/*"
],
"bin": "node ./bin/server.cjs --token=$TELEGRAM_TOKEN",
"directories": {
"src": "src",
"docs": "docs"
},
"private": false,
"files": [
"bin",
"src",
"scripts"
],
"scripts": {
"commit": "git-cz",
"pretest": "run-s --silent \"lint -- --quiet\" lint:dependency",
"test": "nyc --reporter=text run-s test:unit",
"test:unit": "ava tests/unit/index.js",
"dev": "node --experimental-sqlite --watch -r dotenv/config ./bin/server.cjs",
"dev:docs": "cd docs/ ; bundle exec jekyll serve",
"clean": "npm-run-all clean:logs clean:test-cache",
"clean:report": "rm -rf .nyc_output",
"clean:logs": "rm -rf logs/",
"clean:test-cache": "ava reset-cache tests/e2e/index.js --serial",
"lint": "eslint scripts/* src/**/*.cjs src/**/**/*.cjs src/*.cjs tests/**/*.js",
"lint:dependency": "depcruise -x \"node_modules\" --validate .dependency-cruiser.js src tests",
"lint:markdown": "markdownlint 'docs/**/*.md' --ignore 'docs/_site' --ignore 'docs/index.md'",
"report:dependency": "mkdir -p reports && depcruise --include-only ^src --output-type dot src | dot -T svg > reports/dependencygraph.svg",
"report:coverage": "mkdir -p reports && nyc report --reporter=text-lcov > reports/coverage.lcov && codecov",
"snyk-protect": "scripts/prepare.sh"
},
"engineStrict": true,
"engines": {
"node": ">=22.x",
"npm": ">=10.x"
},
"cpu": [
"x64",
"arm64"
],
"repository": {
"type": "git",
"url": "https://github.com/gotois/ProstoDiary_bot.git"
},
"keywords": [
"prostodiary",
"prosto diary",
"virtual assistant",
"personal telegram bot"
],
"author": {
"name": "Denis Baskovsky",
"email": "baskovsky@ya.ru",
"url": "https://baskovsky.ru/"
},
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/gotois/ProstoDiary_bot/issues",
"email": "support@gotointeractive.com"
},
"maintainers": [
{
"email": "denis@baskovsky.ru",
"name": "Denis Baskovsky",
"url": "https://baskovsky.ru/"
}
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"express": "4.21.1",
"ical.js": "2.1.0",
"minimist": "1.2.8",
"request-json-rpc2": "2.2.3",
"snyk": "1.1294.2",
"telegram-bot-activitystreams": "1.0.7",
"telegram-bot-api-express": "1.3.4",
"uuid": "11.0.3"
},
"devDependencies": {
"@commitlint/cli": "14.1.0",
"ava": "4.3.3",
"codecov": "4.0.0-0",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"dependency-cruiser": "15.3.0",
"dotenv": "16.4.5",
"eslint": "8.8.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-ava": "13.2.0",
"eslint-plugin-jsdoc": "48.7.0",
"eslint-plugin-json": "4.0.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-unicorn": "40.1.0",
"husky": "3.1.0",
"js-yaml": "4.1.0",
"lint-staged": "11.2.6",
"markdownlint-cli": "0.39.0",
"ngrok": "5.0.0-beta.2",
"npm-check-updates": "17.1.11",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"prettier": "2.8.8",
"snyk": "1.1243.0",
"validator": "13.12.0"
},
"snyk": false
}