forked from eilvelia/tdl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.16 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
{
"name": "tdl-dev",
"version": "0.0.0",
"private": true,
"description": "A JavaScript wrapper for TDLib",
"scripts": {
"clean": "rimraf packages/*/dist/ && lerna run clean",
"clean-modules": "rimraf node_modules/ && lerna clean -y",
"clean-all": "npm run clean && npm run clean-modules",
"build": "node copy.js && lerna run build",
"lint": "eslint . --max-warnings 0",
"jest-tests": "jest --testPathIgnorePatterns tests/integration",
"test": "npm run flow:check && npm run ts:check && npm run lint && npm run jest-tests",
"integration-tests": "jest tests/integration",
"jest-test-all": "jest",
"test:all": "npm run flow:check && npm run ts:check && npm run lint && npm run jest-test-all",
"coverage": "jest --coverage",
"postinstall": "lerna bootstrap",
"publish": "node scripts/publish.js",
"prepare": "npm run clean && npm run build",
"prepack": "npm test",
"ts:check": "tsc --noEmit",
"flow:check": "flow check --include-warnings --max-warnings 0"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/eslint-parser": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-flow": "^7.12.1",
"@bannerets/eslint-config-flow": "^0.6.0",
"@types/node": "^14.14.6",
"eslint": "^7.13.0",
"flow-bin": "^0.138.0",
"fluture": "^8.0.2",
"jest": "^26.6.3",
"jest-extended": "^0.11.5",
"lerna": "^3.22.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.1.2"
},
"files": [
"flow",
"examples",
"README.md",
"TDLib_API.md"
],
"author": "Bannerets <[email protected]>",
"license": "MIT",
"keywords": [
"telegram",
"telegram-api",
"tdlib",
"tdl"
],
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bannerets/tdl.git"
},
"bugs": {
"url": "https://github.com/Bannerets/tdl/issues"
},
"homepage": "https://github.com/Bannerets/tdl#readme"
}