-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
66 lines (66 loc) · 1.97 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
{
"name": "telegram-typings-generator",
"version": "5.0.0",
"private": true,
"description": "Telegram typings generator",
"main": "index.js",
"typings": "telegram-typings.d.ts",
"scripts": {
"test": "npm run test:lint && npm run test:flow",
"test:flow": "flow status",
"test:lint": "eslint .",
"dev": "DEBUG=tt:* nodemon -w lib -w bin/telegram-typings ./bin/telegram-typings",
"build": "node ./bin/telegram-typings && rustfmt rust/src/lib.rs || true",
"make:changelog": "conventional-changelog -p angular -i changelog.md -r 0 -s && true",
"changelog": "npm test && npm run make:changelog && git add changelog.md && git commit -m 'chore: changelog'",
"publish": "pushd javascript && npm publish && popd",
"postpublish": "pushd rust && cargo publish && popd",
"precommit": "npm run test:lint",
"prepush": "npm test",
"commitmsg": "commitlint -e $GIT_PARAMS"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sergeysova/telegram-typings.git"
},
"keywords": [
"telegram",
"bots",
"typings",
"types",
"flow",
"type",
"typescript",
"script",
"build",
"generate"
],
"author": "Sergey Sova <[email protected]> (https://lestad.top)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sergeysova/telegram-typings/issues"
},
"homepage": "https://github.com/sergeysova/telegram-typings#readme",
"dependencies": {},
"devDependencies": {
"@atomix/eslint-config": "^6.4.0",
"@babel/generator": "^7.0.0-beta.36",
"@babel/types": "^7.0.0-beta.36",
"@commitlint/cli": "^6.2.0",
"cheerio": "^1.0.0-rc.2",
"conventional-changelog-cli": "^1.3.22",
"cz-customizable": "^5.2.0",
"debug": "^3.1.0",
"eslint": "^4.19.1",
"flow-bin": "^0.71.0",
"husky": "^0.14.3",
"node-fetch": "^2.6.1",
"nodemon": "^1.17.3",
"rust-keywords": "^1.0.1"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
}
}