forked from Cyclonecode/mysql-notification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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": "mysql-notification",
"version": "1.0.8",
"description": "Example of a user defined function (UDF) in MySQL",
"engines": {
"node": ">= 10.0.0",
"npm": ">= 6.0.0"
},
"dependencies": {
"cross-env": "^5.2.1",
"minimist": "^1.2.5",
"mysql": "^2.18.1",
"pm2": "^3.5.2",
"websocket": "^1.0.31",
"winston": "^3.2.1"
},
"devDependencies": {
"eslint": "^6.7.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cross-env NODE_ENV=production pm2 start ./scripts/server.js -- $PM2_ARGS",
"dev": "node ./scripts/server.js",
"pm2": "node_modules/.bin/pm2",
"setup": "./build.sh",
"build": "./build.sh",
"cleanup": "./build.sh clean",
"clean": "./build.sh clean",
"lint": "eslint --ext .js scripts",
"insert": "node scripts/insert.js",
"update": "node scripts/update.js",
"delete": "node scripts/delete.js",
"select": "node scripts/select.js"
},
"repository": {
"type": "git",
"url": "[email protected]:Cyclonecode/mysql-notification.git"
},
"bugs": {
"url": "https://github.com/cyclonecode/mysql-notification/issues"
},
"author": {
"name": "Cyclonecode",
"email": "[email protected]"
},
"license": "ISC"
}