forked from mikanda/node-odt
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
42 lines (42 loc) · 860 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
38
39
40
41
42
{
"name": "odt",
"version": "1.1.1",
"description": "A node tool to work with OpenDocument text files.",
"main": "index.js",
"bin": {
"node-odt": "bin/node-odt"
},
"scripts": {
"test": "make test"
},
"repository": {
"type": "git",
"url": "git://github.com/domachine/node-odt.git"
},
"keywords": [
"node",
"odt",
"odf"
],
"author": "Dominik Burgdörfer <dominik.burgdoerfer@mikanda.de>",
"license": "BSD",
"dependencies": {
"unzip": "~0.1.7",
"pipette": "~0.9.3",
"async": "~0.2.9",
"adm-zip": "~0.4.3",
"archiver": "~0.4.3",
"colors": "~0.6.0-1",
"merge": "~1.1.1",
"xmldom": "~0.1.16"
},
"devDependencies": {
"should": "~1.2.2",
"mocha": "~1.12.0"
},
"readmeFilename": "README.md",
"directories": {
"example": "examples",
"test": "test"
}
}