-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.99 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
{
"name": "@modern-dev/tgbotjs",
"version": "0.1.1",
"description": "Telegram Bot API for Node.js and browsers.",
"main": "lib/cjs/index.js",
"module": "lib/es6/index.js",
"typings": "lib/cjs/index.d.ts",
"types": "lib/cjs/index.d.ts",
"scripts": {
"build": "npm run build-cjs && npm run build-es6",
"build-cjs": "tsc --module commonjs --outdir ./lib/cjs",
"build-es6": "tsc --module es6 --outDir ./lib/es6",
"lint": "eslint ./src/*.ts",
"mocha": "cross-env TS_NODE_FILES=true mocha --exit -r ts-node/register --colors ./**/*.spec.ts",
"test": "npm run lint && npm run coverage",
"pub": "npm run test && npm run build && npm publish --access public",
"coverage:unit": "nyc npm run test:mock-server",
"coverage:report": "nyc report --reporter=json > coverage/coverage.json",
"coverage": "npm run coverage:unit && npm run coverage:report",
"mock-server": "node ./scripts/test_mock_server.js",
"test:mock-server": "concurrently --success first -k \"npm run mocha\" \"npm run mock-server\""
},
"author": "Bohdan Shtepan <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/modern-dev/tgbotjs.git"
},
"keywords": [
"telegram",
"bot",
"api",
"nodejs",
"browsers",
"chatbot"
],
"bugs": {
"url": "https://github.com/modern-dev/tgbotjs/issues"
},
"homepage": "https://github.com/modern-dev/tgbotjs#readme",
"dependencies": {
"wretch": "^1.7.1"
},
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/mocha": "^5.2.7",
"@types/node": "^13.7.0",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"chai": "^4.2.0",
"codecov": "^3.6.1",
"concurrently": "^5.1.0",
"cross-env": "^6.0.3",
"eslint": "^6.6.0",
"form-data": "^3.0.0",
"mocha": "^7.0.0",
"node-fetch": "^2.6.0",
"nyc": "^15.0.0",
"restify": "^8.5.1",
"ts-node": "^8.6.1",
"typescript": "^3.7.2"
}
}