forked from airgram/airgram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.71 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
{
"name": "airgram",
"version": "0.1.6",
"homepage": "https://airgram.io",
"main": "index.js",
"types": "index.d.ts",
"keywords": [
"telegram",
"mtproto"
],
"scripts": {
"clean": "rm -rf dist",
"compile": "npm run clean && tsc && cp LICENSE dist && cp README.md dist",
"deploy": "np --yolo --no-publish",
"dev": "DEBUG=airgram* nodemon --config nodemon.json",
"lint": "tslint --project \".\"",
"postversion": "git push && git push --tags",
"postdeploy": "cp package.json dist && cp -r src/vendor dist && npm publish dist",
"prepublishOnly": "npm run compile",
"test": "echo \"Error: no test specified\" && exit 1"
},
"pre-commit": "lint",
"author": "Alexander Krisko",
"license": "GPL-3.0",
"repository": "https://github.com/airgram/airgram",
"dependencies": {
"axios": "^0.18.0",
"crypto-js": "^3.1.9-1",
"inversify": "^5.0.1",
"inversify-binding-decorators": "^4.0.0",
"lodash": "^4.17.11",
"require-directory": "^2.1.1",
"rusha": "^0.8.13",
"zlib": "^1.0.5"
},
"peerDependencies": {
"reflect-metadata": "^0.1.12"
},
"devDependencies": {
"@types/node": "^10.11.7",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"event-stream": "^3.3.4",
"nodemon": "^1.18.4",
"np": "^3.0.4",
"pre-commit": "^1.2.2",
"reflect-metadata": "^0.1.12",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-standard": "^7.1.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.1.3"
}
}