forked from rodrigogs/mysql-events
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.44 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
{
"name": "@synctree/mysql-events",
"version": "0.6.1",
"license": "BSD-3-Clause",
"description": "A node.js package that watches a MySQL database and runs callbacks on matched events like updates on tables and/or specific columns.",
"homepage": "https://github.com/synctree/mysql-events",
"keywords": [
"mysql",
"events",
"trigger",
"notify",
"watcher"
],
"repository": {
"type": "git",
"url": "[email protected]:synctree/mysql-events.git"
},
"main": "index.js",
"scripts": {
"eslint": "eslint . --ext .js",
"test": "npm run test:55 && npm run test:56 && npm run test:57 && npm run test:80",
"test:55": "cross-env DATABASE_PORT=3355 jest --forceExit --runInBand",
"test:56": "cross-env DATABASE_PORT=3356 jest --forceExit --runInBand",
"test:57": "cross-env DATABASE_PORT=3357 jest --forceExit --runInBand",
"test:80": "cross-env DATABASE_PORT=3380 jest --forceExit --runInBand",
"test:local": "./scripts/test.sh",
"coverage": "nyc --reporter=lcov npm test"
},
"dependencies": {
"@vlasky/zongji": "^0.5.8",
"@vlasky/mysql": "2.18.5"
},
"devDependencies": {
"chai": "^4.2.0",
"codeclimate-test-reporter": "^0.5.1",
"cross-env": "^5.2.0",
"dotenv-cli": "^2.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"jest": "^24.8.0",
"nyc": "^14.1.1"
},
"engines": {
"node": ">=7.6.0"
}
}