-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 901 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
41
{
"name": "sheet2sql",
"version": "1.0.0",
"description": "Generating sql import queries from sheet files",
"main": "src/index.js",
"scripts": {
"test": "mocha",
"fulltest": "nyc mocha --timeout=3000",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zeroboo/sheet2sql.js.git"
},
"keywords": [
"xlsx",
"xls",
"csv",
"mysql",
"postgres",
"sql generator",
"sql",
"sheet"
],
"author": "zeroboo",
"license": "ISC",
"bugs": {
"url": "https://github.com/zeroboo/sheet2sql.js/issues"
},
"homepage": "https://github.com/zeroboo/sheet2sql.js#readme",
"dependencies": {
"pg-escape": "^0.2.0",
"winston": "^3.2.1",
"xlsx": "^0.14.0"
},
"devDependencies": {
"coveralls": "^3.0.4",
"mocha": "^6.1.4",
"nyc": "^14.1.1"
}
}