forked from zerobias/telegram-mtproto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.33 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"description": "Telegram MTProto library",
"name": "telegram-mtproto",
"license": "MIT",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"module": "es/index.js",
"typings": "index.d.ts",
"scripts": {
"build": "npm run build:cjs && npm run build:es",
"watch:node": "npm run build:cjs -- --watch",
"watch:web": "webpack --watch --config config/webogram/webpack.config.js",
"build:webogram:vendor": "webpack --config config/webogram/webpack.vendor.config.js",
"build:webogram": "webpack --config config/webogram/webpack.config.js",
"rebuild:webogram": "npm run build:webogram:vendor && npm run build:webogram",
"rebuild:cjs": "npm run clean:cjs & npm run build:cjs",
"build:cjs": "cross-env BABEL_ENV=commonjs babel src/ -d lib -s",
"build:async": "cross-env BABEL_ENV=commonjs babel src/ -d lib -s --no-babelrc --plugins=transform-flow-strip-types,transform-es2015-modules-commonjs,transform-class-properties,transform-object-rest-spread,closure-elimination",
"clean:cjs": "rimraf lib/",
"rebuild:es": "npm run clean:es & npm run build:es",
"build:es": "babel src/ -d es -s",
"clean:es": "rimraf es/",
"test": "node --harmony test/node.test.js",
"prepublish": "npm run rebuild:es && npm run rebuild:cjs"
},
"author": "Zero Bias",
"dependencies": {
"@goodmind/node-cryptojs-aes": "^0.5.0",
"ajv": "^4.11.5",
"ajv-keywords": "^1.5.1",
"axios": "^0.15.3",
"bluebird": "^3.5.0",
"debug": "^2.6.3",
"detect-node": "^2.0.3",
"eventemitter2": "^3.0.2",
"memoizee": "^0.4.4",
"pako": "^1.0.4",
"ramda": "^0.23.0",
"randombytes": "^2.0.3",
"rusha": "^0.8.5",
"worker-loader": "^0.8.0"
},
"devDependencies": {
"@types/debug": "0.0.29",
"@types/memoizee": "^0.4.0",
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.0",
"babel-loader": "^6.4.1",
"babel-plugin-closure-elimination": "^1.1.14",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-es2015-block-scoping": "^6.23.0",
"babel-plugin-transform-es2015-for-of": "^6.23.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.0",
"babel-plugin-transform-exponentiation-operator": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"cross-env": "^3.2.4",
"eslint": "^3.18.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-plugin-promise": "^3.5.0",
"flow-bin": "^0.42.0",
"hirestime": "^3.1.0",
"nightmare": "^2.10.0",
"prompt": "^1.0.0",
"rimraf": "^2.6.1",
"tap": "^10.3.0",
"webpack": "^2.2.1"
},
"engines": {
"node": ">=6.0"
},
"bugs": {
"url": "https://github.com/zerobias/telegram-mtproto/issues"
},
"files": [
"lib",
"test",
"examples",
"schema",
"source",
"es",
"index.d.ts"
],
"keywords": [
"telegram",
"mt",
"mtproto",
"mobile",
"protocol",
"library"
],
"maintainers": [
{
"name": "Zero Bias",
"email": "[email protected]"
}
],
"readme": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/zerobias/telegram-mtproto.git"
},
"version": "2.2.2"
}