-
Notifications
You must be signed in to change notification settings - Fork 470
/
package.json
130 lines (130 loc) · 3.52 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "officegen",
"description": "Office Open XML Generator using Node.js streams. Supporting Microsoft Office 2007 and later Word (docx), PowerPoint (pptx,ppsx) and Excell (xlsx). This module is for all frameworks and environments. No need for any commandline tool - this module is doing everything inside it.",
"version": "0.6.5",
"author": {
"name": "Ziv Barber",
"url": "https://github.com/Ziv-Barber"
},
"license": "MIT",
"url": "https://github.com/Ziv-Barber/officegen",
"engines": {
"node": ">= 0.10.0"
},
"keywords": [
"officegen",
"office",
"microsoft",
"2007",
"word",
"powerpoint",
"excel",
"docx",
"pptx",
"ppsx",
"xlsx",
"charts",
"Office Open XML",
"stream",
"generate",
"create",
"maker",
"generator",
"creator"
],
"repository": {
"type": "git",
"url": "git://github.com/Ziv-Barber/officegen.git"
},
"bugs": {
"url": "https://github.com/Ziv-Barber/officegen/issues"
},
"main": "index.js",
"directories": {
"lib": "lib",
"examples": "examples"
},
"scripts": {
"clean": "npx rimraf dist doc tmp",
"test": "mocha tests/",
"commit": "npx git-cz",
"esdoc": "npx esdoc",
"flow": "npx flow",
"lint": "better-npm-run lint",
"prettify": "prettier --write",
"prettify:all": "prettier --write \"{lib,examples,tests,plugins,test_files}/**/*.{jsx,js}\""
},
"dependencies": {
"archiver": "~5.2.0",
"async": "^3.2.0",
"fast-image-size": "^0.1.3",
"jszip": "^3.6.0",
"lodash": "^4.17.21",
"readable-stream": "~3.6.0",
"setimmediate": "~1.0.5",
"xmlbuilder": "^15.1.1"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/node": "^7.13.0",
"@babel/preset-env": "^7.13.9",
"@babel/preset-flow": "^7.12.13",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"better-npm-run": "^0.1.1",
"chai": "^4.3.3",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"esdoc": "^1.1.0",
"esdoc-brand-plugin": "^1.0.1",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-flow-type-plugin": "^1.1.0",
"esdoc-integrate-manual-plugin": "^1.0.0",
"esdoc-integrate-test-plugin": "^1.0.0",
"esdoc-lint-plugin": "^1.0.2",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^7.21.0",
"eslint-config-mocha": "^0.0.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-flowtype": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.1.0",
"eslint-plugin-mocha-only": "^0.0.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"flow-bin": "^0.146.0",
"flow-typed": "^3.3.1",
"mocha": "^8.3.1",
"npm-run-all": "^4.1.5",
"prettier": "2.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.40.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-cpy": "^2.0.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"sinon": "^9.2.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"betterScripts": {
"lint": {
"command": "npx eslint \"**/*.js\"",
"env": {
"NODE_ENV": "development"
}
}
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/officegen"
}
}