-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 1.46 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
{
"name": "@ndzhwr/json-base",
"version": "0.1.6",
"main": "dist/index.js",
"description": "a lightweight odm for json file inspired by prisma",
"files": [
"/dist"
],
"author": {
"name": "Regis NDIZIHIWE",
"email": "[email protected]",
"url": "https://github.com/regisrex"
},
"repository": {
"type": "git",
"url": "git+https://github.com/regisrex/json-base.git"
},
"engines": {
"node": ">=8.10.0"
},
"keywords": [
"json",
"json database",
"json ORM",
"database",
"javascript",
"typescript",
"regisrex",
"lightweight",
"json-base",
"json database package npm",
"json orm"
],
"license": "MIT",
"type": "module",
"scripts": {
"lint": "npx eslint --ext .ts --fix",
"build": "tsc",
"cli:init": " node dist/cli/index.js --init",
"cli:help": " node dist/cli/index.js --help",
"dev": "npx nodemon dist/index.js",
"test": "vitest",
"prepublish": "npm run build"
},
"bin": {
"json-base": "dist/cli/index.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {
"chalk": "^5.2.0"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.31.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"prettier": "^2.8.2",
"vitest": "^0.27.1"
}
}