forked from stevetarver/excel-as-json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.36 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
{
"name": "@mrbatista/excel-as-json",
"version": "2.2.2",
"description": "Convert Excel data to JSON",
"author": "Steve Tarver <steve.tarver@gmail.com>",
"contributors": [
{
"name": "Matteo Padovano",
"email": "mrba7ista@gmail.com",
"url": "https://github.com/mrbatista"
}
],
"license": "MIT",
"main": "lib/excel-as-json.js",
"scripts": {
"prepublish": "grunt build:dist",
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrbatista/excel-as-json.git"
},
"keywords": [
"Excel",
"JSON",
"excel-as-json",
"excel-to-json",
"convert"
],
"bugs": {
"url": "https://github.com/mrbatista/excel-as-json/issues"
},
"homepage": "https://github.com/mrbatista/excel-as-json",
"dependencies": {
"async": "^2.1.4",
"excel": "^0.1.7",
"lodash": "^4.17.4",
"mathjs": "^3.9.0",
"fs-extra": "^2.0.0"
},
"devDependencies": {
"chai": "3.5.0",
"coffee-script": "1.10.0",
"coveralls": "2.11.9",
"grunt": "^1.0.1",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-coffee": "^1.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-coveralls": "^1.0.1",
"grunt-mocha-istanbul": "^5.0.2",
"ibrik": "^2.0.0",
"istanbul": "^0.4.5",
"load-grunt-tasks": "^3.5.2",
"mocha": "2.5.3",
"time-grunt": "^1.4.0"
}
}