-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.26 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.26 KB
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
{
"name": "tooltips.js",
"version": "2.0.0-pre",
"description": "Clientside library for inflating HS GW2 tags (`<gw2obj />`) and rendering above game quality tooltips for items, skills, traits, buffs and more. Also includes skeleton css with the bare minimum for everything to look decent.",
"keywords": [
"Hardstuck",
"HS",
"GuildWars 2",
"GW2",
"Tooltip"
],
"author": "Rennorb <rennorb@hardstuck.gg>",
"license": "AGPL-3.0",
"main": "out/tooltips.js",
"mainMin": "out/tooltips.min.js",
"files": [
"out"
],
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HardstuckGuild/Tooltips.js.git"
},
"bugs": {
"url": "https://github.com/HardstuckGuild/Tooltips.js/issues"
},
"homepage": "https://github.com/HardstuckGuild/Tooltips.js#readme",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^3.28.0",
"rollup-plugin-strip-code": "^0.2.7",
"tslib": "^2.6.0",
"typescript": "^5.1.6",
"whatwg-fetch": "^3.6.20"
},
"jest": {
"testMatch": [
"<rootDir>/tests/*.js",
"!**/tooltips?(.min).js"
],
"testEnvironment": "jsdom"
}
}