-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.05 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
{
"name": "sql-syntax",
"version": "2.0.1",
"description": "Tagged template literals utilities for ease of composing SQL queries.",
"types": "./dist/index.d.ts",
"type": "module",
"exports": "./dist/index.js",
"engines": {
"node": ">=18.0.0"
},
"repository": "https://github.com/t83714/SQLSyntax.git",
"author": "Jacky Jiang <[email protected]>",
"license": "Apache-2.0",
"private": true,
"scripts": {
"prettier": "prettier --write 'src/*.ts'",
"eslint": "eslint src/*.ts",
"test": "mocha",
"prebuild": "rimraf dist tsconfig.tsbuildinfo",
"build": "tsc -b",
"build-docs": "rimraf docs && typedoc --gaID G-9TMY41X6WG --theme default --includeVersion --out docs src/index.ts",
"dev": "ts-node --require tsconfig-paths/register src/index.ts",
"prepublishOnly": "npm run build"
},
"sideEffects": false,
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@types/node": "18.19.3",
"chai": "5.0.0-rc.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.1",
"mocha": "^10.2.0",
"prettier": "^3.1.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typedoc": "^0.25.4",
"typescript": "^5.3.3"
},
"mocha": {
"require": [
"ts-node/register"
],
"loader": "ts-node/esm",
"spec": [
"src/test/**/**.spec.ts"
]
},
"prettier": {
"tabWidth": 4,
"singleQuote": false,
"printWidth": 80,
"trailingComma": "none",
"useTabs": false,
"overrides": [
{
"files": ["**/package.json"],
"options": {
"tabWidth": 2
}
},
{
"files": [
"**/*.yml",
"**/*.yaml",
"**/.*.yaml",
"**/.*.yml",
"**/*.yaml"
],
"options": {
"tabWidth": 2
}
}
]
}
}