-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
53 lines (53 loc) · 1.16 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
50
51
52
53
{
"name": "xlsx-writer",
"description": "Simple XLSX writer.",
"version": "0.0.12",
"homepage": "https://github.com/rubenv/node-xlsx-writer",
"author": {
"name": "Ruben Vermeersch",
"email": "[email protected]",
"url": "https://rocketeer.be/"
},
"repository": {
"type": "git",
"url": "git://github.com/rubenv/node-xlsx-writer.git"
},
"bugs": {
"url": "https://github.com/rubenv/node-xlsx-writer/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/rubenv/node-xlsx-writer/blob/master/LICENSE"
}
],
"main": "lib/index.js",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt test"
},
"devDependencies": {
"grunt-contrib-watch": "~0.3.1",
"grunt-contrib-coffee": "~0.6.0",
"grunt-contrib-clean": "~0.4.0",
"grunt": "~0.4.0",
"grunt-mocha-cli": "~1.0.1",
"coffee-script": "~1.6.1",
"grunt-mkdir": "~0.1.0",
"excel": "0.0.3",
"underscore": "~1.4.4",
"grunt-release": "~0.3.1"
},
"keywords": [
"xlsx",
"excel",
"spreadsheet"
],
"dependencies": {
"temp": "~0.5.0",
"async": "~0.2.6",
"zipper": "~0.3.0"
}
}