-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.63 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": "sql-select-ts",
"version": "0.0.0",
"description": "A modern, database-agnostic, composable SELECT query builder with great typescript support.",
"main": "lib/index.js",
"module": "es6/index.js",
"typings": "lib/index.d.ts",
"homepage": "https://lucasavila00.github.io/sql-select-ts/",
"repository": {
"type": "git",
"url": "https://github.com/lucasavila00/sql-select-ts.git"
},
"scripts": {
"test": "jest",
"clear_jest": "jest --clearCache",
"ts": "tsc --noEmit",
"prettier-check": "prettier --check \"{src,scripts,tests,docs-api-template}/**/*.{js,jsx,ts,tsx,json,css,md}\" && prettier --check \"eval-mds/**/*.md\"",
"static": "npm run prettier-check && npm run ts && npm run lint",
"docs": "docs-ts",
"invert": "ts-node --transpileOnly ./scripts/invert-pipe.ts",
"fix-docs-ts": "ts-node ./scripts/copy-fix-docs-ts.ts && cp -r docs-api-template/* docs/api/",
"md": "npm run docs && npm run fix-docs-ts && npm run eval-examples",
"build": "rm -rf dist && tsc -p ./tsconfig.build.json && tsc -p ./tsconfig.build-es6.json && ts-node scripts/build",
"prepublishOnly": "ts-node scripts/pre-publish",
"release": "ts-node scripts/release",
"lint": "eslint .",
"eval-examples": "eval-md"
},
"keywords": [],
"author": "Lucas Ávila",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@apla/clickhouse": "^1.6.4",
"@degroote22/eval-md": "0.0.5",
"@types/command-line-args": "^5.2.0",
"@types/glob": "^7.2.0",
"@types/jest": "^28.1.1",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.0.0",
"@types/prettier": "^2.6.3",
"@types/sqlite3": "^3.1.8",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"command-line-args": "^5.2.1",
"concurrently": "^7.2.2",
"docs-ts": "^0.6.10",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.5.3",
"fp-ts": "^2.12.1",
"glob": "^8.0.3",
"jest": "^28.1.1",
"js-yaml": "^4.1.0",
"nodemon": "^2.0.18",
"prettier": "^2.7.1",
"remark-frontmatter": "^3.0.0",
"remark-parse": "^9.0.0",
"remark-stringify": "^9.0.1",
"sql-formatter": "^7.0.2",
"sqlite3": "^5.0.8",
"ts-jest": "^28.0.4",
"ts-node": "^10.8.1",
"typescript": "^4.7.4",
"unified": "^9.2.2",
"unist-util-flatmap": "^1.0.0",
"unist-util-visit": "^4.1.0"
}
}