forked from Sabellus/excel4node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.79 KB
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
66
67
68
69
70
71
72
73
{
"name": "excel4node",
"version": "1.3.6",
"description": "Library to create Formatted Excel Files.",
"engines": {
"node": ">4.0.0"
},
"keywords": [
"excel",
"spreadsheet",
"xlsx",
"formatted",
"styled",
"report",
"workbook",
"ooxml"
],
"main": "./source/index.js",
"author": {
"name": "Nater",
"email": "nater@seas.harvard.edu"
},
"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",
"cover": "NODE_ENV=test nyc tape -r babel-register ./tests/*.test.js",
"build": "./node_modules/babel-cli/bin/babel.js source --presets babel-preset-env -s --out-dir distribution",
"watch": "./node_modules/babel-cli/bin/babel.js source -w --presets babel-preset-env -s --out-dir distribution",
"document": "jsdoc ./source -r -d docs",
"prepublish": "npm run build; npm run test"
},
"dependencies": {
"image-size": "0.6.1",
"jszip": "3.1.5",
"lodash": "4.17.4",
"mime": "2.0.3",
"sloth-logger": "1.0.3",
"xmlbuilder": "9.0.4"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-plugin-istanbul": "4.1.5",
"babel-preset-env": "1.6.1",
"babel-register": "6.26.0",
"jsdoc": "^3.5.5",
"nyc": "11.3.0",
"source-map-support": "0.5.0",
"tape": "4.8.0",
"tape-promise": "2.0.1",
"xmldom": "0.1.27",
"xpath.js": "1.0.7"
},
"nyc": {
"instrument": false,
"sourceMap": false,
"reporter": [
"text-summary",
"html"
]
}
}