-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
90 lines (90 loc) · 2.16 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "fxsql",
"version": "1.6.2",
"description": "Functional query builder based on fxjs",
"type": "module",
"main": "index.js",
"module": "mjs/index.js",
"scripts": {
"transpile:mjs": "BABEL_ENV=mjs babel src --out-dir ./mjs",
"transpile:cjs": "BABEL_ENV=cjs babel src --out-dir ./cjs",
"transpile": "npm run transpile:mjs && npm run transpile:cjs",
"build": "npm run transpile && node scripts/transfrom_cjs_exports.js && mv src es",
"deploy": "npx np --no-tests --no-publish",
"test": "mocha -R spec test/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marpple/FxSQL.git"
},
"keywords": [
"functional",
"orm",
"sql query builder",
"template literals",
"tagged template literals",
"sql injection",
"mysql",
"postgresql"
],
"exports": {
".": {
"import": "./mjs/index.js",
"require": "./cjs/index.js"
},
"./index": {
"import": "./mjs/index.js",
"require": "./cjs/index.js"
},
"./index.js": {
"import": "./mjs/index.js",
"require": "./cjs/index.js"
},
"./ljoin": {
"import": "./mjs/ljoin.js",
"require": "./ljoin.js"
},
"./ljoin.js": {
"import": "./mjs/ljoin.js",
"require": "./ljoin.js"
},
"./es": "./es/index.js",
"./es/index": "./es/index.js",
"./es/index.js": "./es/index.js",
"./es/ljoin": "./es/ljoin.js",
"./es/ljoin.js": "./es/ljoin.js"
},
"files": [
"mjs/",
"cjs/",
"es/",
"index.js",
"ljoin.js"
],
"author": "marpple",
"license": "MIT",
"bugs": {
"url": "https://github.com/marpple/FxSQL/issues"
},
"homepage": "https://github.com/marpple/FxSQL",
"dependencies": {
"@babel/runtime-corejs3": "^7.14.5",
"dumper.js": "^1.3.1",
"fxjs": "^0.21.3",
"mysql": "^2.18.1",
"pg-pool": "^3.3.0",
"pluralize": "^8.0.0"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"chai": "^4.3.4",
"mocha": "^9.0.0",
"prettier": "^2.3.1"
},
"peerDependencies": {
"pg": "8.x"
}
}