forked from chuanyi/msexcel-builder
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (41 loc) · 1014 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
{
"author": "Charlie Zheng <[email protected]>",
"name": "msexcel-builder",
"description": "A tiny library to create Microsoft Office Excel(2007) files under Nodejs.",
"tags": [
"xlsx",
"excel"
],
"version": "0.0.2",
"repository": {
"type": "git",
"url": "git://github.com/chuanyi/msexcel-builder.git"
},
"bugs": {
"url": "https://github.com/chuanyi/msexcel-builder/issues"
},
"main": "./lib/msexcel-builder.js",
"engines": {
"node": "*"
},
"dependencies": {
"xmlbuilder": ">=0.4.2",
"async": "~0.2.6",
"fs-extra": "~0.5.0",
"easy-zip": "~0.0.4",
"coffee-script": "*",
"moment": "~2.5.0"
},
"scripts": {
"test": "node test/generate_excel.js"
},
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-less": "~0.8.2",
"grunt-contrib-watch": "~0.5.3",
"grunt-contrib-coffee": "~0.7.0",
"grunt-contrib-mincss": "~0.3.2",
"grunt-contrib-cssmin": "~0.7.0",
"grunt-contrib-uglify": "~0.2.7"
}
}