-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 1.79 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/mssql",
"version": "2.11.1",
"description": "MOST Web Framework MSSQL Data Adapter",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jasmine",
"build": "rimraf dist && rollup --config rollup.config.js"
},
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "https://github.com/themost-framework/mssql.git"
},
"keywords": [
"data",
"db",
"mssql",
"orm",
"most",
"database"
],
"author": "Kyriakos Barbounakis <k.barbounakis@gmail.com>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/themost-framework/mssql/issues"
},
"homepage": "https://github.com/themost-framework/mssql",
"dependencies": {
"async": "^3.2.3",
"mssql": "^11.0.1",
"sprintf-js": "^1.1.2"
},
"peerDependencies": {
"@themost/common": "^2.11.0",
"@themost/query": "^2"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/register": "^7.17.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/query": "^2.14.3",
"@themost/sqlite": "^2.7.3",
"@themost/xml": "^2.5.2",
"@types/async": "^3.2.12",
"@types/jasmine": "^3.5.14",
"@types/mssql": "^7.1.5",
"dotenv": "^8.2.0",
"eslint": "^8.14.0",
"jasmine": "^4.1.0",
"jasmine-spec-reporter": "^7.0.0",
"mathjs": "^13.1.1",
"module-alias": "^2.2.2",
"moment": "^2.30.1",
"moment-timezone": "^0.5.39",
"rimraf": "^3.0.2",
"rollup": "^2.71.1",
"rollup-plugin-dts": "^4.2.1",
"typescript": "^4.6.4"
}
}