-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.53 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
{
"name": "@themost/core",
"version": "2.2.1",
"description": "@themost-framework core data object",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.js",
"scripts": {
"test": "jest",
"build": "rimraf dist && rollup -c rollup.config.js"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/themost-framework/core.git"
},
"author": "Kyriakos Barbounakis <k.barbounakis@gmail.com>",
"bugs": {
"url": "https://github.com/themost-framework/core/issues"
},
"homepage": "https://github.com/themost-framework/core#readme",
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/eslint-parser": "^7.21.8",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.22.15",
"@babel/preset-env": "^7.22.4",
"@babel/register": "^7.21.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.0",
"@themost/json-logger": "^1.1.0",
"@types/jasmine": "^4.3.2",
"@types/node": "^17.0.23",
"dotenv": "^8.2.0",
"eslint": "^8.42.0",
"eslint-plugin-jest": "^28.9.0",
"jest": "^29.7.0",
"rimraf": "^3.0.2",
"rollup": "^3.23.1",
"rollup-plugin-dts": "^5.3.0",
"typescript": "^4.6.3"
},
"dependencies": {
"@themost/client": "^2.16.3",
"@themost/common": "^2.11.0",
"@themost/data": "^2.17.1",
"@themost/events": "^1.3.0",
"@themost/query": "^2.14.7",
"@themost/sqlite": "^2.8.4",
"@themost/xml": "^2.5.2"
}
}