-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 771 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 771 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
37
38
39
{
"name": "ck2parser",
"version": "1.0.0",
"description": "Crusader Kings 2 Savegame to JSON Parser.",
"author": "Chris Kjær Sørensen",
"homepage": "https://github.com/chriskjaer/ck2parser",
"repository": {
"type": "git",
"url": "https://github.com/chriskjaer/ck2parser"
},
"main": "./lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha"
},
"keywords": [
"ck2",
"parser",
"crusader",
"kings",
"ii",
"json",
"savegame"
],
"license": "MIT",
"dependencies": {
"iconv-lite": "^0.4.4",
"moment": "^2.8.3",
"q-io": "^1.11.5",
"ramda": "^0.5.0"
},
"devDependencies": {
"chai": "^1.9.1",
"chai-as-promised": "^4.1.1",
"mocha": "^1.21.4"
}
}