-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.01 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
84
85
86
87
88
89
{
"name": "typeorm-aios",
"version": "0.2.34",
"description": "",
"main": "index.js",
"scripts": {
"test": "npx mocha test/{**,**/**}/*.spec.ts",
"mocha": "npx mocha test/{**,**/**}/*.spec.ts",
"posttest": "npx nyc report --reporter=json && npx codecov -f coverage/*.json"
},
"license": "MIT",
"private": true,
"author": {
"name": "Robert Kania"
},
"repository": {
"type": "git",
"url": "git@github.com:thinkbaer/node-typeorm-aios.git"
},
"bugs": {
"url": "https://github.com/thinkbaer/node-typeorm-aios/issues"
},
"homepage": "https://github.com/thinkbaer/node-typeorm-aios",
"keywords": [
"jdbc",
"driver",
"aios",
"database",
"datasources",
"typeorm",
"informix",
"hsqldb"
],
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"tmp/",
"build/"
],
"require": [
"ts-node/register"
],
"sourceMap": true,
"instrument": true,
"cache": false
},
"devDependencies": {
"@allgemein/packaging": "^1.2.15",
"@testdeck/mocha": "^0.2.0",
"@types/chai": "^4.3.0",
"@types/gulp": "^4.0.9",
"@types/gulp-bump": "^2.8.2",
"@types/gulp-replace": "1.1.0",
"@types/gulp-sourcemaps": "0.0.35",
"@types/gulp-watch": "^4.1.35",
"@types/lodash": "^4.14.180",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.23",
"chai": "^4.3.6",
"codecov": "^3.8.3",
"codelyzer": "^6.0.2",
"del": "^6.0.0",
"gulp": "^4.0.2",
"gulp-bump": "^3.2.0",
"gulp-clean": "^0.4.0",
"gulp-replace": "^1.1.3",
"gulp-shell": "^0.8.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "^5.0.1",
"gulp-util": "^3.0.8",
"gulp-watch": "^5.0.1",
"gulpclass": "^0.2.0",
"merge-stream": "^2.0.0",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"ts-node": "^10.7.0",
"tslint": "^6.1.3",
"typescript": "4.3.5"
},
"dependencies": {
"aios": "^1.0.1",
"lodash": "^4.17.21",
"typeorm": "0.2.34"
}
}