-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 974 Bytes
/
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
{
"name": "recage",
"description": "Age of Empires 2 Recorded Game parser in Node.js",
"version": "0.1.0",
"author": "Renée Kooi <renee@kooi.me>",
"browser": {
"zlib": "./lib/zlib"
},
"dependencies": {
"associate-arrays": "^1.0.1",
"awestruct": "^1.2.3",
"concat-stream": "^2.0.0",
"from2-buffer": "^1.0.0",
"genie-dat": "^0.4.0",
"inflate-raw": "^1.0.0",
"pako": "^1.0.8",
"safe-buffer": "^5.1.2"
},
"devDependencies": {
"buble": "^0.19.6",
"bytes": "^3.1.0",
"chalk": "^3.0.0",
"minimist": "^1.2.0",
"standard": "^14.3.1",
"watch": "^1.0.1"
},
"homepage": "https://goto-bus-stop.github.io/recage",
"license": "GPL-3.0",
"main": "./lib/RecordedGame",
"repository": "goto-bus-stop/recage",
"scripts": {
"build": "buble src --objectAssign Object.assign -o lib",
"prepublish": "npm run build",
"test": "standard src/**/*.js",
"watch": "watch 'npm run build' src"
}
}