This repository was archived by the owner on Jan 23, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.73 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.73 KB
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
{
"name": "@casper124578/mysql.ts",
"version": "1.0.1",
"description": "A simple mysql wrapper for node.js",
"main": "dist/index.js",
"private": false,
"scripts": {
"build": "rm -rf dist/ && tsc",
"build:tsc": "tsc --noEmit",
"test": "ts-node tests/index.test.ts",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --fix --ext .ts,.tsx",
"format": "prettier --write \"**/*.{js,jsx,json,ts,tsx,yml,md}\" --ignore-path .gitignore",
"format:quick": "pretty-quick --write \"**/*.{js,jsx,json,ts,tsx,yml,md}\" --ignore-path .gitignore",
"prepare": "husky install"
},
"keywords": [
"mysql",
"mysql-wrapper",
"easy-mysql",
"mysql typescript"
],
"author": {
"name": "Dev-CasperTheGhost",
"url": "https://caspertheghost.me"
},
"repository": {
"type": "git",
"url": "https://github.com/Dev-CasperTheGhost/mysql.ts"
},
"bugs": {
"url": "https://github.com/Dev-CasperTheGhost/mysql.ts/issues"
},
"homepage": "https://github.com/Dev-CasperTheGhost/mysql.ts#readme",
"license": "MIT",
"dependencies": {
"mysql": "^2.18.1",
"promise-mysql": "github:Dev-CasperTheGhost/node-promise-mysql"
},
"devDependencies": {
"@casper124578/eslint-config": "^1.0.0",
"@types/mysql": "^2.15.19",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"typescript": "^4.4.2"
},
"prettier": {
"endOfLine": "auto",
"semi": true,
"trailingComma": "all",
"singleQuote": false,
"printWidth": 100,
"tabWidth": 2
}
}