-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.77 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
68
69
70
{
"name": "@raresail/prisma-mapper",
"version": "1.8.0",
"description": "A CLI that adds @Map, @@Map, @updatedAt based on a json or camel case for the prisma schema",
"main": "bin/index.js",
"preferGlobal": true,
"bin": {
"prisma-mapper": "bin/commands.js"
},
"engines": {
"node": "20 || >=22"
},
"types": "bin",
"files": [
"bin/*"
],
"keywords": [
"nodejs",
"mapper",
"prisma",
"cli",
"typescript",
"camel",
"camel-case",
"json",
"schema",
"map",
"generate"
],
"homepage": "https://github.com/RaresAil/prisma-mapper",
"repository": "https://github.com/RaresAil/prisma-mapper.git",
"author": "RaresAil <rares.ailincai@raresdesigns.com>",
"license": "Apache-2.0",
"private": false,
"scripts": {
"prepublishOnly": "yarn build",
"dev:bin": "yarn build && NODE_ENV=dev node bin/commands.js",
"dev": "NODE_ENV=dev ts-node src/commands.ts",
"build": "yarn lint && rimraf -rf ./bin/ && tsc -p .",
"lint": "eslint src/**/*.ts",
"test": "jest"
},
"dependencies": {
"@prisma/internals": "^5.22.0",
"colors": "^1.4.0",
"commander": "^12.1.0"
},
"resolutions": {
"braces": "^3.0.3",
"micromatch": "^4.0.8"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^8.55.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.13.0",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-security": "^3.0.1",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "5.6.3"
}
}