This repository has been archived by the owner on Jul 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 215
/
package.json
73 lines (73 loc) · 1.85 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
66
67
68
69
70
71
72
73
{
"name": "excel4node",
"version": "1.7.2",
"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]"
},
"license": "MIT",
"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": {
"deepmerge": "3.2.0",
"image-size": "0.7.2",
"jszip": "3.2.1",
"lodash.get": "4.4.2",
"lodash.isequal": "4.5.0",
"lodash.isundefined": "3.0.1",
"lodash.reduce": "4.6.0",
"lodash.uniqueid": "4.0.1",
"mime": "2.4.0",
"uuid": "3.3.2",
"xmlbuilder": "11.0.1"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-plugin-istanbul": "4.1.6",
"babel-preset-env": "1.7.0",
"babel-register": "6.26.0",
"jsdoc": "3.5.5",
"nyc": "12.0.2",
"source-map-support": "0.5.11",
"tape": "4.10.1",
"tape-promise": "2.0.1",
"xmldom": "0.1.27",
"xpath.js": "1.1.0"
},
"nyc": {
"instrument": false,
"sourceMap": false,
"reporter": [
"text-summary",
"html"
]
}
}