-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.54 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
{
"name": "tl-transform",
"version": "0.2.0",
"description": "Translates TL to TypeScript / Flow",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/",
"flow": "flow check",
"lint": "eslint . --max-warnings 0",
"types": "flow-copy-source src dist",
"build": "babel src/ -d dist/ && npm run types",
"test": "npm run flow && npm run lint",
"prepare": "npm run clean && npm run build",
"prepack": "npm test",
"start": "npm run build && node dist"
},
"files": [
".flowconfig",
"dist",
"bin",
"flow-typed",
"README.md",
"LICENSE"
],
"bin": {
"tl-transform": "bin/tl-transform"
},
"dependencies": {
"ramda": "^0.25.0",
"tl-parser": "^0.7.3"
},
"devDependencies": {
"@bannerets/eslint-config-flow": "^0.5.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"eslint": "^4.19.1",
"flow-bin": "^0.76.0",
"flow-copy-source": "^1.3.0",
"rimraf": "^2.6.2"
},
"author": "bannerets <comonoid@protonmail.com>",
"license": "MIT",
"keywords": [
"tl",
"typelanguage",
"type language",
"telegram",
"mtproto"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Bannerets/ti-el.git"
},
"bugs": {
"url": "https://github.com/Bannerets/ti-el/issues"
},
"homepage": "https://github.com/Bannerets/ti-el#readme"
}