-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.32 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
{
"name": "sqlonsails",
"version": "0.0.1",
"description": "sql interpreter for typescript",
"main": "dist/repl.js",
"scripts": {
"start": "node dist/repl.js",
"dev": "rm -Rf dist && tsc -p tsconfig-build.json && node dist/repl.js",
"build": "tsc -p tsconfig-build.json",
"clean": "rm -R dist",
"fmt": "prettier . --write",
"fmt-check": "prettier . --check",
"lint": "eslint .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ajmarcus/sqlonsails.git"
},
"keywords": [
"sql"
],
"author": "Ariel Marcus",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/ajmarcus/sqlonsails/issues"
},
"homepage": "https://github.com/ajmarcus/sqlonsails#readme",
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@babel/preset-typescript": "^7.23.3",
"@jest/globals": "^29.7.0",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prettier": "3.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}