-
Notifications
You must be signed in to change notification settings - Fork 362
/
package.json
69 lines (69 loc) · 1.65 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
{
"name": "loopback-datasource-juggler",
"version": "5.1.3",
"publishConfig": {
"export-tests": true
},
"description": "LoopBack DataSource Juggler",
"keywords": [
"StrongLoop",
"LoopBack",
"DataSource",
"Connector",
"Database",
"Juggler",
"ORM"
],
"author": "IBM Corp.",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/loopbackio/loopback-datasource-juggler"
},
"main": "index.js",
"types": "index.d.ts",
"browser": {
"depd": "./lib/browser.depd.js"
},
"scripts": {
"lint": "eslint .",
"build": "npm run build-ts-types",
"build-ts-types": "tsc -p tsconfig.json --outDir dist",
"pretest": "npm run build",
"test": "nyc mocha",
"posttest": "npm run lint"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@types/node": "^10.17.60",
"async-iterators": "^0.2.2",
"bson": "^4.7.2",
"eslint": "^8.57.1",
"eslint-config-loopback": "^13.1.0",
"eslint-plugin-mocha": "^10.5.0",
"loopback-connector-throwing": "file:./test/fixtures/loopback-connector-throwing",
"mocha": "^11.0.1",
"nyc": "^17.1.0",
"should": "^13.2.3",
"typescript": "^5.7.2"
},
"dependencies": {
"async": "^3.2.6",
"change-case": "^4.1.2",
"debug": "^4.4.0",
"depd": "^2.0.0",
"inflection": "^3.0.0",
"lodash": "^4.17.21",
"loopback-connector": "^6.1.12",
"minimatch": "^10.0.1",
"nanoid": "^3.3.8",
"neotraverse": "^0.6.18",
"qs": "^6.13.1",
"strong-globalize": "^6.0.6",
"uuid": "^11.0.3"
},
"license": "MIT"
}