-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 869 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 869 Bytes
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
{
"name": "civ6-save-parser",
"version": "1.2.3",
"description": "Parses Civilization VI Save Files.",
"main": "index.js",
"scripts": {
"lint-fix": "eslint --fix .",
"test": "eslint . && mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pydt/civ6-save-parser.git"
},
"author": "Mike Rosack <mrosack@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pydt/civ6-save-parser/issues"
},
"homepage": "https://github.com/pydt/civ6-save-parser#readme",
"dependencies": {
"buffer-v6-polyfill": "^1.0.5",
"diacritics": "^1.3.0",
"iconv-lite": "^0.6.3",
"lodash": "^4.17.21",
"minimist": "^1.2.8"
},
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.46.0",
"eslint-config-google": "^0.14.0",
"mocha": "^10.2.0"
},
"files": [
"index.js"
]
}