This repository has been archived by the owner on Oct 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
100 lines (100 loc) · 2.35 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
{
"name": "hearthstone-parser",
"version": "0.0.0-development",
"description": "This simple module monitors the Hearthstone log file and emits events based on important events from the log.",
"main": "dist/index.js",
"license": "MIT",
"files": [
"dist",
"data",
"log.config"
],
"types": "dist/index.d.ts",
"dependencies": {
"@types/lodash": "^4.14.161",
"@types/mockdate": "^2.0.0",
"chokidar": "^2.1.5",
"debug": "^4.1.1",
"eventemitter2": "^5.0.1",
"extend": "^3.0.2",
"lodash": "^4.17.20",
"mockdate": "^2.0.2",
"require-all": "^3.0.0",
"split-lines": "^2.0.0",
"strict-event-emitter-types": "^2.0.0",
"tslib": "^2.2.0"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@supportclass/tsconfig-base": "^1.0.4",
"@types/chai": "^4.1.7",
"@types/chokidar": "^2.1.3",
"@types/debug": "4.1.3",
"@types/extend": "^3.0.1",
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.4",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"chai": "^4.2.0",
"dtslint": "^4.0.4",
"eslint": "^7.6.0",
"eslint-config-xo": "^0.32.1",
"eslint-config-xo-typescript": "^0.32.0",
"got": "^9.6.0",
"husky": "^1.3.1",
"inquirer": "^6.5.1",
"mocha": "^6.1.4",
"npm-run-all": "^4.1.5",
"nyc": "^14.0.0",
"semantic-release": "^17.3.0",
"trash-cli": "^1.4.0",
"ts-node": "^8.0.3",
"typescript": "^3.9.7",
"write-json-file": "^4.2.0"
},
"scripts": {
"prebuild": "npm t",
"build": "trash dist && tsc -p tsconfig.json",
"watch": "tsc -p tsconfig.json --watch",
"test": "npm-run-all test:*",
"test:static": "eslint \"**/*.ts\"",
"test:types": "dtslint test/types",
"test:mocha": "nyc mocha"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
],
"include": [
"src"
],
"reporter": [
"html",
"lcov",
"text"
],
"all": true
},
"keywords": [
"hearthstone",
"deck tracker",
"log",
"parser",
"watcher"
],
"author": "",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "https://github.com/Tespa/hearthstone-parser.git"
}
}