-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.93 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-chat-parser",
"version": "1.0.7",
"description": "Module to import and easily navigate Telegram JSON chat exports",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"author": "Ben Irvin",
"license": "MIT",
"pre-commit": {
"silent": true,
"run": [
"lint",
"test-min"
]
},
"files": [
"dist/src/**/*"
],
"bugs": {
"url": "https://github.com/innerdvations/telegram-chat-parser/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/innerdvations/telegram-chat-parser.git"
},
"scripts": {
"prepublishOnly": "yarn lint && yarn build",
"build": "npx tsc",
"build-watch": "npx tsc-watch",
"test": "./node_modules/.bin/ts-mocha",
"test-min": "./node_modules/.bin/ts-mocha --reporter min",
"test-watch": "./node_modules/.bin/ts-mocha src/**/*.spec.ts tests/**/*.spec.ts --watch",
"coverage": "./node_modules/.bin/nyc yarn test-min",
"lint": "./node_modules/.bin/eslint .",
"dev": "yarn run lint && yarn run coverage",
"dev-watch": "./node_modules/.bin/nodemon --exec yarn dev",
"dev-watch-poll": "./node_modules/.bin/nodemon -L --exec yarn dev"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/chai-arrays": "^2.0.0",
"@types/chai-like": "^1.1.0",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.35",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.17.0",
"chai": "^4.3.4",
"chai-arrays": "^2.2.0",
"chai-like": "^1.1.1",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-base-typescript": "^1.0.0",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.3.2",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"ts-mocha": "^8.0.0",
"ts-node": "^9.1.1",
"tsc-watch": "^4.2.9",
"typescript": "^4.2.3"
},
"dependencies": {
"moment": "^2.29.1"
}
}