-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "excel-as-json",
"version": "2.0.2",
"description": "Convert Excel data to JSON",
"author": "Steve Tarver <[email protected]>",
"license": "MIT",
"main": "lib/excel-as-json.js",
"scripts": {
"clean": "tools/clean.sh",
"build": "tools/build.sh",
"test": "tools/test.sh",
"dist": "tools/dist.sh",
"codecov": "cat ./coverage/lcov.info | ./node_modules/.bin/codecov",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"prepublish": "tools/dist.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stevetarver/excel-as-json.git"
},
"keywords": [
"Excel",
"JSON",
"convert"
],
"bugs": {
"url": "https://github.com/stevetarver/excel-as-json/issues"
},
"homepage": "https://github.com/stevetarver/excel-as-json",
"dependencies": {
"excel": "0.1.7"
},
"devDependencies": {
"chai": "4.1.2",
"codecov.io": "0.1.6",
"coffee-coverage": "3.0.0",
"coffeescript": "2.2.4",
"coveralls": "3.0.0",
"istanbul": "0.4.5",
"mocha": "5.1.0"
}
}