-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.21 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
{
"name": "@frgmt/frm",
"version": "3.0.2",
"description": "A TypeScript ORM with a focus on simplicity and extensibility",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"example": "ts-node example.ts",
"prepublishOnly": "npm test && npm run build",
"prepare": "npm run build",
"version": "git add -A src",
"postversion": "git push origin master && git push origin master --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frgmt0/frm.git"
},
"keywords": [
"orm",
"typescript",
"database",
"sqlite",
"sql",
"query-builder",
"database-toolkit"
],
"author": "frgmt",
"license": "MIT",
"bugs": {
"url": "https://github.com/frgmt0/frm/issues"
},
"homepage": "https://github.com/frgmt0/frm#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.8.0",
"@types/sqlite3": "^3.1.10",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"sqlite3": "^5.1.6"
}
}