forked from stephenliberty/excel-builder.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·49 lines (49 loc) · 1.17 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
{
"name": "excel-builder",
"version": "2.1.0",
"description": "An easy way of building Excel files with javascript",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/stephenliberty/excel-builder.js.git"
},
"keywords": [
"excel",
"javascript",
"xlsx",
"spreadsheet"
],
"author": "Stephen Liberty",
"license": "MIT",
"bugs": {
"url": "https://github.com/stephenliberty/excel-builder.js/issues"
},
"homepage": "http://excelbuilderjs.com/",
"devDependencies": {
"@types/lodash": "^4.14.180",
"browserify": "^12.0.1",
"browserify-shim": "^3.8.11",
"grunt": "~0.4.5",
"grunt-browserify": "^4.0.1",
"grunt-contrib-copy": "*",
"grunt-contrib-jasmine": "^0.9.2",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-uglify": "^3.4.0",
"grunt-contrib-watch": "^0.6.1"
},
"optionalDependencies": {
"node-forge": "^1.3.0"
},
"dependencies": {
"jszip": "^3.7.1",
"lodash": "^4.17.21",
"q": "^1.5.1"
},
"browserify-shim": {
"lodash": "global:_",
"jszip": "global:JSZip"
}
}