-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
59 lines (59 loc) · 1.5 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
58
59
{
"name": "mysqldumpsplit",
"version": "2.0.0",
"description": "An efficient .sql file splitter",
"main": "index.js",
"bin": "./dist/cli.js",
"scripts": {
"mocha-test": "mocha --compilers js:babel-core/register 'test/**/*.js'",
"test": "npm run lint && npm run mocha-test",
"prepublish": "gulp",
"lint": "eslint src/ test/",
"coverage": "nyc --reporter=html npm test",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"mysqldump",
"mysql",
"split"
],
"repository": {
"type": "git",
"url": "https://github.com/vekexasia/mysqldumpsplit.git"
},
"bugs": {
"url": "https://github.com/vekexasia/mysqldumpsplit/issues"
},
"author": "Andrea Baccega",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.4.0",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"chai": "^3.5.0",
"coveralls": "^2.11.8",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^4.0.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.0",
"gulp-istanbul": "^0.10.3",
"gulp-mocha": "^2.2.0",
"isparta": "^4.0.0",
"mocha": "^2.3.3",
"moment": "^2.12.0",
"nyc": "^6.0.0",
"proxyquire": "^1.7.4",
"sinon": "^1.17.3",
"stream-buffer": "^1.0.0",
"stream-buffers": "^3.0.0"
},
"dependencies": {
"commander": "^2.9.0",
"rxjs": "^5.4.0",
"streamsplit": "^2.0.0"
},
"engines": {
"node": ">=0.12"
}
}