-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 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
{
"name": "@michpl/telegram-calendar",
"version": "1.1.0",
"description": "Calendar for telegram bot",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "mocha --require ts-node/register tests/**/*.spec.{ts,js}",
"typecheck": "tsc --noEmit",
"build": "npm run clean && tsc",
"clean": "rm -rf lib",
"lint": "eslint ./src/**/*.ts",
"coverage": "nyc npm run test",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run lint",
"preversion": "npm run lint",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/michPl/telegram-calendar.git"
},
"bugs": {
"url": "https://github.com/michPl/telegram-calendar/issues/"
},
"keywords": [
"calendar",
"telegram",
"bot"
],
"author": "michPl <plehanov_michael@mail.ru>",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^16.18.34",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"chai": "^4.3.7",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"files": [
"lib/**/*"
]
}