-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
95 lines (95 loc) · 3.15 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
{
"name": "ovale",
"version": "9.1.13",
"description": "Show the icon of the next spell to cast",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"prepare": "husky install",
"build": "tstolua -p tsconfig.lua.json",
"build-tools": "tsc",
"simc": "node dist/src/utils/importsimc/index.js",
"dbc": "node dist/src/utils/dbc.js",
"watch": "tstolua -p tsconfig.lua.json -w",
"watch-tools": "tsc -w",
"coverage": "nyc --reporter=lcovonly ava",
"lint": "eslint src --ext .ts",
"prettier": "prettier --write src",
"localize": "node dist/src/utils/translation.js",
"release": "standard-version -t '' -s"
},
"author": "Sidoine De Wispelaere",
"contributors": [
"Johnny C. Lam"
],
"license": "ISC",
"dependencies": {
"@types/node": "^15.12.2",
"@wowts/ace_comm-3.0": "^1.1.0",
"@wowts/ace_config-3.0": "^1.1.0",
"@wowts/ace_config_dialog-3.0": "^1.0.3",
"@wowts/ace_console-3.0": "^1.0.0",
"@wowts/ace_db-3.0": "^1.2.0",
"@wowts/ace_db_options-3.0": "^1.1.0",
"@wowts/ace_event-3.0": "^1.2.0",
"@wowts/ace_gui-3.0": "^1.2.0",
"@wowts/ace_locale-3.0": "^1.0.0",
"@wowts/ace_serializer-3.0": "^1.1.0",
"@wowts/ace_timer-3.0": "^2.4.0",
"@wowts/bit": "^1.0.0",
"@wowts/callback_handler-1.0": "^1.0.0",
"@wowts/coroutine": "^1.1.0",
"@wowts/lib_artifact_data-1.0": "^1.0.0",
"@wowts/lib_babble-creature_type-3.0": "^1.1.1",
"@wowts/lib_button_glow-1.0": "^1.0.0",
"@wowts/lib_d_b_icon-1.0": "^1.0.0",
"@wowts/lib_data_broker-1.1": "^1.0.0",
"@wowts/lib_dual_spec-1.0": "^1.0.0",
"@wowts/lib_range_check-2.0": "^1.0.0",
"@wowts/lib_text_dump-1.0": "^1.0.1",
"@wowts/lua": "^1.6.0",
"@wowts/math": "^1.1.0",
"@wowts/string": "^1.1.1",
"@wowts/table": "^1.0.1",
"@wowts/tsaddon": "^1.2.1",
"@wowts/tslib": "^1.3.1",
"@wowts/wow-mock": "^1.32.4"
},
"optionalDependencies": {
"@wowts/libactionbutton-1.0-elvui": "^1.0.1",
"@wowts/masque": "^1.1.0",
"@wowts/recount": "^1.1.0"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@wowts/tstolua": "^1.13.7",
"commitlint": "^16.2.3",
"csv-parse": "^4.16.3",
"eslint": "^7.32.0",
"husky": "^7.0.2",
"jest": "^26.6.3",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"standard-version": "^9.3.0",
"ts-jest": "^26.4.4",
"typemoq": "^2.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Sidoine/Ovale.git"
},
"lua": {
"name": "Ovale",
"title": "Ovale Spell Priority",
"interface": "90100",
"savedVariables": "OvaleDB"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}