-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 918 Bytes
/
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
{
"name": "sql-js-data-mapper",
"version": "0.0.9",
"description": "A tiny compiler that takes SQL and JS object and runs the sql on the object as if the object became a table in the database, using only js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"format": "npx prettier --write .",
"prepublish": "tsc",
"prepare": "husky install",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git@github.com/IbrahimShamma99/sql-js-tiny-compiler.git"
},
"keywords": [
"ts",
"sql",
"compilers"
],
"author": "Ibra",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^12.20.55",
"husky": "^8.0.3",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@rollup/plugin-babel": "^6.0.2",
"tape": "^5.6.3"
}
}