forked from Pamblam/mysql-import
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·45 lines (45 loc) · 1.14 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
{
"author": "Rob Parham",
"bugs": {
"url": "https://github.com/pamblam/mysql-import/issues"
},
"deprecated": false,
"description": "Import .sql into a MySQL database with Node.",
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"grunt": "^1.0.4",
"grunt-contrib-concat": "^1.0.1",
"grunt-string-replace": "^1.3.1",
"mocha": "^7.1.0",
"nyc": "^15.0.0"
},
"engines": {
"node": ">5.0.0"
},
"homepage": "https://github.com/pamblam/mysql-import#readme",
"keywords": [
"nodejs",
"mysql",
"textfiles",
"import",
"sql"
],
"license": "MIT",
"main": "mysql-import.js",
"name": "mysql-import",
"repository": {
"type": "git",
"url": "git+https://github.com/pamblam/mysql-import.git"
},
"scripts": {
"build": "grunt",
"test": "node_modules/.bin/nyc --reporter=html --reporter=text node_modules/.bin/mocha ./test/test.js --timeout 15000",
"memory-test": "node_modules/.bin/mocha ./test/memory-stress-test.js --timeout 0",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"version": "5.1.1",
"dependencies": {
"mysql2": "^2.3.3"
}
}