-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.3 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
{
"name": "typeorm-explain",
"version": "0.0.1",
"description": "Tiny helper to wrap TypeORM's query builder queries to EXPLAIN",
"main": "lib",
"module": "esm",
"types": "lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write src",
"type-check": "tsc --noEmit",
"build:types": "tsc --emitDeclarationOnly",
"build:cjs": "tsc -m commonjs --declarationDir lib --outDir lib",
"build:esm": "tsc -m esNext --declarationDir esm --outDir esm",
"build": "npm run build:types && npm run build:cjs && npm run build:esm",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zamarawka/typeorm-explain.git"
},
"keywords": [
"typeorm",
"explain"
],
"author": "zamarawka <[email protected]> (https://github.com/zamarawka)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zamarawka/typeorm-explain/issues"
},
"homepage": "https://github.com/zamarawka/typeorm-explain#readme",
"peerDependencies": {
"typeorm": "~0.2.41"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.4.1",
"prettier": "^2.5.1",
"typeorm": "^0.2.41",
"typescript": "^4.5.4"
}
}