forked from natergj/excel4node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.67 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "excel4node",
"version": "1.2.0",
"description": "Library to create Formatted Excel Files.",
"engines": {
"node": ">4.0.0"
},
"keywords": [
"excel",
"spreadsheet",
"xlsx",
"formatted",
"styled",
"report",
"workbook",
"ooxml"
],
"main": "./distribution/index.js",
"author": {
"name": "Nater",
"email": "[email protected]"
},
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/mit-license.php"
}
],
"repository": {
"type": "git",
"url": "git://github.com/natergj/excel4node.git"
},
"bugs": {
"url": "https://github.com/natergj/excel4node/labels/bug"
},
"scripts": {
"test": "NODE_ENV=test ./node_modules/tape/bin/tape -r babel-register ./tests/*.test.js",
"build": "./node_modules/babel-cli/bin/babel.js source --presets babel-preset-es2015 -s --out-dir distribution",
"watch": "./node_modules/babel-cli/bin/babel.js source -w --presets babel-preset-es2015 -s --out-dir distribution",
"document": "jsdoc ./source -r -d docs",
"prepublish": "npm run build; npm run test"
},
"dependencies": {
"babel-register": "^6.9.0",
"colors": "^1.1.2",
"image-size": "0.5.0",
"jszip": "^3.0.0",
"lodash": "4.13.1",
"mime": "^1.3.4",
"sloth-logger": "^1.0.3",
"xmlbuilder": "8.2.2"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-node4": "^2.1.0",
"jsdoc-babel": "^0.2.1",
"source-map-support": "^0.4.1",
"tape": "^4.6.0",
"tape-promise": "^1.1.0",
"xmldom": "^0.1.22",
"xpath.js": "^1.0.6"
}
}