-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 900 Bytes
/
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
{
"name": "telegram-markdown-sanitizer",
"version": "0.0.11",
"description": "Telegram markdown sanitizer",
"keywords": ["telegram", "markdown"],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "node dist/index.js",
"watch": "nodemon src/index.ts",
"build": "tsc && browserify dist/index.js --standalone TelegramMarkdownSanitizer --outfile dist/bundle.browser.js",
"format": "prettier --write 'src/**/*.ts'",
"test": "jest --watchAll",
"test:ci": "jest --ci"
},
"author": "https://github.com/illyakurochkin",
"repository": "https://github.com/illyakurochkin/telegram-markdown-sanitizer",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}