-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.08 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.08 KB
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
{
"name": "normaljs",
"version": "1.0.6",
"description": "NormalJS : Node Object Relational Mapper Abstraction Layer",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"prebuild": "rm -rf dist",
"prepublishOnly": "npm run build",
"test": "rm -rf dist && tsc && jest --detectOpenHandles",
"demo:blog": "rm -rf dist && tsc && node dist/demo/blog-ts/src/index.js",
"demo:blog:filters": "rm -rf dist && tsc && node dist/demo/blog-ts/src/relational-filters-demo.js",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --detectOpenHandles",
"bench": "rm -rf dist && tsc && node demo/cache/bench.js",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "eslint . --ext .ts,.js --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"docs:start": "docusaurus start --port 3001",
"docs:build": "docusaurus build",
"docs:serve": "docusaurus serve --dir build --port 3002"
},
"website": "https://ichiriac.github.io/normaljs/",
"keywords": [
"orm",
"sql",
"query",
"postgresql",
"postgres",
"mysql",
"cockroachdb",
"sqlite3",
"oracle",
"mssql",
"builder",
"querybuilder",
"build",
"db",
"database"
],
"author": "Ioan Chiriac",
"license": "MIT",
"dependencies": {
"knex": "^3.1.0",
"validator": "^13.15.20"
},
"devDependencies": {
"@babel/preset-env": "^7.28.3",
"@babel/preset-react": "^7.28.5",
"@docusaurus/core": "^3.4.0",
"@docusaurus/preset-classic": "^3.4.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.0",
"@types/validator": "^13.15.4",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"prism-react-renderer": "^2.3.0",
"sqlite3": "^5.1.7",
"ts-jest": "^29.4.5",
"typescript": "^5.9.3"
}
}