-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.37 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
{
"name": "@themost/express-src",
"version": "2.1.1",
"private": true,
"description": "MOST Data ORM Express Middleware",
"main": "index.js",
"scripts": {
"clean": "cd modules/@themost/express && rimraf dist",
"build": "cd modules/@themost/express && rimraf dist && rollup -c rollup.config.js -m",
"watch": "cd modules/@themost/express && rimraf dist && rollup -c rollup.config.js -m -w",
"test": "jasmine",
"test-with-coverage": "nyc jasmine",
"lint": "eslint modules/@themost/express"
},
"engines": {
"node": ">=6.9.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/themost-framework/express.git"
},
"keywords": [
"@themost",
"data",
"orm",
"express",
"middleware",
"expressjs"
],
"author": "Kyriakos Barbounakis <k.barbounakis@gmail.com>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/themost-framework/express/issues"
},
"homepage": "https://github.com/themost-framework/express#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.20.13",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"@babel/register": "^7.9.0",
"@rollup/plugin-babel": "^5.3.1",
"@themost/common": "^2.11.0",
"@themost/data": "^2.16.0",
"@themost/events": "^1.3.0",
"@themost/query": "^2.14.7",
"@themost/sqlite": "^2.8.3",
"@themost/xml": "^2.5.2",
"@types/express": "^4.17.2",
"@types/jasmine": "^3.5.0",
"@types/multer": "^1.4.3",
"@types/passport": "^1.0.2",
"@types/q": "^1.5.2",
"@types/supertest": "^2.0.8",
"babel-eslint": "^10.1.0",
"debug": "^4.1.1",
"eslint": "^6.8.0",
"express": "^4.21.2",
"jasmine": "^3.5.0",
"jasmine-spec-reporter": "^4.2.1",
"lodash": "^4.17.21",
"minimist": ">=0.2.1",
"multer": "^1.4.5-lts.1",
"passport": "^0.6.0",
"passport-http-bearer": "^1.0.1",
"pluralize": "^7.0.0",
"q": "^1.5.1",
"rimraf": "^3.0.0",
"rollup": "^2.79.1",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-dts": "^4.2.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rxjs": "^6.5.4",
"supertest": "^4.0.2",
"symbol": "^0.3.1",
"tslint": "^5.20.1",
"typescript": "^4.0.3"
},
"dependencies": {
"nyc": "^15.1.0"
}
}