-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 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
53
54
55
{
"name": "@themost/query",
"version": "2.14.7",
"description": "MOST Web Framework Codename ZeroGravity - Query Module",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "rimraf dist && rollup -c rollup.config.js"
},
"engines": {
"node": ">=8.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/themost-framework/query.git"
},
"author": "Kyriakos Barbounakis <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/themost-framework/query/issues"
},
"homepage": "https://github.com/themost-framework/query#readme",
"dependencies": {
"@themost/events": "^1.0.5",
"async": "^3.2.3",
"esprima": "^4.0.0",
"lodash": "^4.17.21",
"sprintf-js": "^1.1.2"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-transform-runtime": "^7.23.4",
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.18.9",
"@rollup/plugin-babel": "^5.3.1",
"@themost/common": "^2.10.4",
"@themost/json-logger": "^1.1.0",
"@themost/peers": "^1.0.2",
"@themost/sqlite": "^2.7.2",
"@types/jasmine": "^3.5.14",
"@types/node": "^17.0.23",
"@types/sprintf-js": "^1.1.2",
"dotenv": "^8.2.0",
"eslint": "^8.12.0",
"jest": "^29.7.0",
"module-alias": "^2.2.2",
"rimraf": "^3.0.2",
"rollup": "^2.70.1",
"rollup-plugin-dts": "^4.2.0",
"typescript": "^4.6.3"
}
}