-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.81 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
{
"name": "@themost/pg",
"version": "2.11.0",
"description": "MOST Web Framework PostgreSQL Adapter",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/themost-framework/pg.git"
},
"scripts": {
"test": "nyc jasmine",
"build": "rimraf dist && rollup --config rollup.config.js"
},
"keywords": [
"most",
"web",
"data",
"db",
"adapter",
"pg",
"postgres",
"postgresql"
],
"author": "Kyriakos Barbounakis <k.barbounakis@gmail.com>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/themost-framework/pg/issues"
},
"homepage": "https://github.com/themost-framework/pg",
"dependencies": {
"pg": "^8.7.3",
"sprintf-js": "^1.1.2"
},
"peerDependencies": {
"@themost/common": "^2",
"@themost/query": "^2"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.25.1",
"@babel/eslint-plugin": "^7.17.7",
"@babel/preset-env": "^7.23.9",
"@babel/register": "^7.23.7",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@themost/common": "^2.11.0",
"@themost/data": "^2.14.1",
"@themost/events": "^1.3.0",
"@themost/peers": "^1.0.2",
"@themost/query": "^2.14.3",
"@themost/sqlite": "^2.6.14",
"@themost/xml": "^2.5.2",
"@types/jasmine": "^5.1.4",
"@types/sprintf-js": "^1.1.2",
"dotenv": "^16.0.0",
"eslint": "^8.15.0",
"jasmine": "^4.1.0",
"jasmine-spec-reporter": "^7.0.0",
"mathjs": "^13.1.1",
"module-alias": "^2.2.3",
"moment": "^2.30.1",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.73.0",
"rollup-plugin-dts": "^4.2.1",
"typescript": "^4.6.4"
}
}