-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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
{
"name": "entity-migrate",
"version": "1.0.57",
"description": "Typescript package for defining and executing migrations for a specific entity, ensuring data consistency and type safety during version updates",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint -- .",
"lint:fix": "eslint --fix -- . && prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"prepublish": "tsc",
"test": "jest",
"test-watch": "jest --watch"
},
"keywords": [
"migrate",
"migration",
"data",
"versioning",
"upgrade",
"transform",
"entity",
"typescript",
"type"
],
"author": "Mohammad Matinaghdam <https://github.com/M-Matin-dev>",
"license": "MIT",
"repository": "https://github.com/M-Matin-dev/entity-migrate",
"devDependencies": {
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"jest": "^29.6.1",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}