|
1 | 1 | {
|
2 | 2 | "name": "prisma-mapper",
|
3 |
| - "version": "1.3.0", |
4 |
| - "description": "A CLI that adds @Map and @@Map based on a json or camel case for the prisma schema", |
| 3 | + "version": "1.3.1", |
| 4 | + "description": "A CLI that adds @Map, @@Map, @updatedAt based on a json or camel case for the prisma schema", |
5 | 5 | "main": "bin/index.js",
|
6 | 6 | "preferGlobal": true,
|
7 | 7 | "bin": {
|
|
11 | 11 | "files": [
|
12 | 12 | "bin/*"
|
13 | 13 | ],
|
| 14 | + "keywords": [ |
| 15 | + "nodejs", |
| 16 | + "mapper", |
| 17 | + "prisma", |
| 18 | + "cli", |
| 19 | + "typescript", |
| 20 | + "camel", |
| 21 | + "camel-case", |
| 22 | + "json", |
| 23 | + "schema", |
| 24 | + "map", |
| 25 | + "generate" |
| 26 | + ], |
| 27 | + "homepage": "https://github.com/RaresAil/prisma-mapper", |
14 | 28 | "repository": "https://github.com/RaresAil/prisma-mapper.git",
|
15 | 29 | "author": "RaresAil <[email protected]>",
|
16 | 30 | "license": "MIT",
|
17 | 31 | "private": false,
|
18 | 32 | "scripts": {
|
19 | 33 | "dev:bin": "yarn build && NODE_ENV=dev node bin/commands.js",
|
20 |
| - "dev": "NODE_ENV=dev nodemon src/commands.ts", |
| 34 | + "dev": "NODE_ENV=dev ts-node src/commands.ts", |
21 | 35 | "build": "yarn lint && rm -rf ./bin/ && tsc -p .",
|
22 |
| - "lint": "eslint src/**/*.ts" |
| 36 | + "lint": "eslint src/**/*.ts", |
| 37 | + "test": "jest" |
23 | 38 | },
|
24 | 39 | "dependencies": {
|
25 |
| - "@prisma/internals": "^4.3.1", |
| 40 | + "@prisma/internals": "^4.6.1", |
26 | 41 | "colors": "^1.4.0",
|
27 |
| - "commander": "^9.4.0", |
28 |
| - "inquirer": "^9.1.2" |
| 42 | + "commander": "^9.4.1", |
| 43 | + "inquirer": "^9.1.4" |
29 | 44 | },
|
30 | 45 | "devDependencies": {
|
31 |
| - "@types/inquirer": "^9.0.1", |
32 |
| - "@types/node": "^18.7.18", |
33 |
| - "@typescript-eslint/eslint-plugin": "^5.38.0", |
34 |
| - "@typescript-eslint/parser": "^5.38.0", |
35 |
| - "eslint": "^8.23.1", |
| 46 | + "@types/inquirer": "^9.0.3", |
| 47 | + "@types/jest": "^29.2.3", |
| 48 | + "@types/node": "^18.11.9", |
| 49 | + "@typescript-eslint/eslint-plugin": "^5.44.0", |
| 50 | + "@typescript-eslint/parser": "^5.44.0", |
| 51 | + "eslint": "^8.28.0", |
36 | 52 | "eslint-config-standard": "^17.0.0",
|
37 | 53 | "eslint-plugin-import": "^2.25.2",
|
38 |
| - "eslint-plugin-n": "^15.2.5", |
39 |
| - "eslint-plugin-promise": "^6.0.0", |
| 54 | + "eslint-plugin-n": "^15.5.1", |
| 55 | + "eslint-plugin-promise": "^6.1.1", |
40 | 56 | "eslint-plugin-security": "^1.5.0",
|
41 |
| - "nodemon": "^2.0.20", |
| 57 | + "jest": "^29.3.1", |
| 58 | + "ts-jest": "^29.0.3", |
42 | 59 | "ts-node": "^10.9.1",
|
43 |
| - "typescript": "4.8.3" |
| 60 | + "typescript": "4.9.3" |
44 | 61 | }
|
45 | 62 | }
|
0 commit comments