-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 840 Bytes
/
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
{
"name": "xlso",
"version": "1.0.3",
"description": "Node.js package for parsing an excel workbook to an javascript object",
"author": {
"name":"Achille Nana Chimi",
"url": "https://nanachimi.com",
"email": "[email protected]"
},
"homepage": "https://github.com/nanachimi/xlso",
"bugs": {
"url": "https://github.com/nanachimi/xlso/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/nanachimi/xlso.git"
},
"license": "MIT",
"main": "index.js",
"keywords":[
"parser",
"xls",
"xlsx",
"excel",
"workbook",
"javascript",
"json",
"object"
],
"scripts": {
"test": "mocha tests"
},
"devDependencies": {
"chai": "^3.5.0",
"istanbul": "^0.4.5",
"mocha": "^3.0.2",
"xlsx": "^0.8.0"
}
}