-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.87 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.87 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "sqlistener",
"version": "0.0.2",
"description": "A plugin that uses SQL to detect when a change, modify, delete, etc. query occurs.",
"main": "dist/src/index.js",
"directories": {
"test": "test"
},
"homepage": "https://github.com/AnyRequest/SQListener",
"license": "MIT",
"keywords": [
"sql",
"mysql2",
"knex",
"promise",
"node",
"eventlistener",
"hook"
],
"types": "src/types/index.d.ts",
"exports": {
".": {
"import": "./build/src/index.js",
"types": "./build/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "https://github.com/AnyRequest/SQListener"
},
"engines": {
"node": ">=16.0.0 <18.13",
"npm": "~9.6.5"
},
"scripts": {
"express": "cross-env NODE_ENV=development nodemon --watch-path=\"test/**\" --ext \"ts,json\" --ignore \"src/**/*.ts\" --exec \"ts-node test/express.ts\"",
"dev": "cross-env NODE_ENV=development nodemon --watch-path=\"src/**\" --ext \"ts,json\" --ignore \"src/**/*.test.ts\" --exec \"ts-node src/index.ts\"",
"build": "tsc",
"build2": "gulp dev"
},
"author": {
"name": "devkimson",
"email": "chaplet01@gmail.com",
"url": "https://kkn1125.github.io"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.2",
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"gulp": "^4.0.2",
"gulp-cli": "^2.3.0",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-uglify": "^3.0.2",
"jest": "^29.6.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsify": "^5.0.4",
"typescript": "^5.1.6",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {
"express": "^4.18.2",
"fastify": "^4.20.0",
"knex": "^2.5.1",
"mysql2": "^3.5.2"
}
}