-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.08 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
{
"name": "gloomparser",
"version": "0.1.0",
"description": "Parsing Gloomhaven Helper's state file for external tracking",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/LRRCommunity/gloomparser.git"
},
"keywords": [
"games",
"gloomhaven",
"helper",
"parser"
],
"author": "offbeatwitch <[email protected]> (https://offbeatwit.ch)",
"contributors": [
"rf232 <[email protected]>",
"hedgehog1029",
"DarkMorford <[email protected]>"
],
"license": "UNLICENSED",
"private": true,
"engines": {
"node": ">=8.11.1 <13.0"
},
"bugs": {
"url": "https://github.com/LRRCommunity/gloomparser/issues"
},
"homepage": "https://github.com/LRRCommunity/gloomparser#readme",
"dependencies": {},
"devDependencies": {
"bufferutil": "^4.0.1",
"canvas": "^2.5.0",
"jest": "^25.1.0",
"utf-8-validate": "^5.0.2"
},
"jest": {
"testEnvironment": "node"
}
}