-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.03 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
{
"name": "genie-dat",
"description": "read and write age of empires .dat files",
"version": "0.4.0",
"author": "Renée Kooi <[email protected]>",
"bugs": {
"url": "https://github.com/genie-js/genie-dat/issues"
},
"dependencies": {
"awestruct": "^1.1.0",
"simple-assign": "^0.1.0"
},
"devDependencies": {
"buble": "^0.20.0",
"glob": "^7.1.2",
"rimraf": "^3.0.0",
"standard": "^14.0.0",
"tap-spec": "^5.0.0",
"tape": "^5.0.0"
},
"homepage": "https://github.com/genie-js/genie-dat",
"keywords": [
"age-of-empires",
"aoc",
"aoe",
"dat",
"genie",
"genie-engine",
"read",
"write"
],
"license": "LGPL-3.0",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/genie-js/genie-dat.git"
},
"scripts": {
"prepare": "npm run build",
"build": "rimraf lib && buble src -o lib",
"test": "node -r buble/register test | tap-spec",
"lint": "standard"
},
"standard": {
"ignore": [
"lib/**/*.js"
]
}
}