This repository has been archived by the owner on Feb 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
111 lines (111 loc) · 3.44 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "loopback-connector-sqlite3x",
"version": "2.1.5",
"description": "alternative LoopBack connector for SQLite3",
"main": "./index.js",
"types": "./index.d.ts",
"tags": [
"javascript",
"typescript",
"SQLite",
"SQLite3",
"ORM",
"DAO",
"schema",
"database",
"loopback",
"loopback-next"
],
"author": {
"email": "www.gms@gmx.at",
"name": "Guenter Sandner"
},
"license": "Artistic-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/gms1/loopback-connector-sqlite3x.git"
},
"bugs": {
"url": "https://github.com/gms1/loopback-connector-sqlite3x/issues"
},
"homepage": "https://github.com/gms1/loopback-connector-sqlite3x",
"scripts": {
"clean": "rimraf dist/*",
"prebuild": "build/sh/tsrun prebuild.ts",
"build": "tsc -p tsconfig.json",
"rebuild": "npm run clean && npm run build",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"test:run": "env-cmd -e test -- mocha -t 40000 -r ts-node/register \"src/**/*.ts\"",
"test:minimal": "npm run test:run -- --grep imported --invert",
"test": "npm run rebuild && npm run test:run",
"watch": "tsc -w -p tsconfig.json",
"coverage:run": "env-cmd -e test -- nyc -e .ts -n \"src/**/*\" -x \"src/test/**/*\" mocha -t 40000 -r ts-node/register \"src/**/*.ts\"",
"coverage:report": "nyc report --reporter=text-lcov",
"coverage:html": "nyc report --reporter=html",
"coverage:codecov": "nyc report --reporter=json --disable=gcov",
"docs": "compodoc .",
"prepublishOnly": "echo \"ERROR: please use the dist-folder for publishing\" && exit 1",
"release:build": "npm run clean && npm run build && npm run coverage:run && npm run lint && npm run _pubprep",
"release:publish": "npm run docs && cd dist && npm --access public publish",
"_pubprep": "build/sh/tsrun publish-prepare.ts",
"postlint": "npm run prettier-diff",
"prettier-diff": "prettier --list-different 'src/**/*.ts'",
"prettier": "prettier --write 'src/**/*.ts'"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"**/test*.ts"
],
"reporter": [
"html"
],
"all": true
},
"dependencies": {
"debug": "^4.3.4",
"loopback-connector": "^5.0.1",
"loopback-datasource-juggler": "^4.27.1",
"sqlite3orm": "^2.6.4",
"strong-globalize": "^6.0.5"
},
"devDependencies": {
"@compodoc/compodoc": "^1.1.19",
"@loopback/core": "^4.0.1",
"@loopback/repository": "^5.0.1",
"@loopback/repository-tests": "^0.20.2",
"@loopback/testlab": "^5.0.1",
"@types/debug": "^4.1.7",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.0",
"@types/rc": "^1.2.1",
"@types/sinon": "^10.0.11",
"@types/sqlite3": "^3.1.8",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"env-cmd": "^10.1.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-deprecation": "^1.3.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.3",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"install": "^0.13.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"should": "^13.2.3",
"sinon": "^14.0.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
},
"typescript": {
"definition": "./index.d.ts"
}
}