-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1003 Bytes
/
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
{
"name": "tgsqlite",
"version": "0.2.1",
"description": "Telegram dump SQLite importer",
"main": "import.js",
"keywords": [ "telegram", "sqlite" ],
"author": "Lapo Luchini <[email protected]>",
"license": "ISC",
"homepage": "https://github.com/lapo-luchini/tgsqlite/",
"bugs": { "url": "https://github.com/lapo-luchini/tgsqlite/issues" },
"repository": {
"type": "git",
"url": "git+https://github.com/lapo-luchini/tgsqlite.git"
},
"dependencies": {
"JSONStream": "^1.3.4",
"sqlite": "^3.0.0"
},
"eslintConfig": {
"env": {
"node": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 2017
},
"extends": "eslint:recommended",
"rules": {
"strict": [ "error", "global" ],
"indent": [ "error", 4 ],
"linebreak-style": [ "error", "unix" ],
"quotes": [ "warn", "single" ],
"semi": [ "warn", "always" ],
"comma-dangle": [ "error", "always-multiline" ],
"no-console": "off"
}
}
}