forked from bugMaker-237/slim-ef
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 1.91 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "slim-ef",
"version": "0.1.62",
"description": "An implementation of basic entity framework functionnalities in typescript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"start:dev": "nodemon",
"build": "tsc",
"format": "prettier --write \"src/**/*.(ts|js)\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bugMaker-237/slim-ef.git"
},
"keywords": [
"ef-core",
"linq",
"orm",
"expression",
"entity-framework",
"mongo",
"mongodb",
"mysql",
"mariadb",
"postgresql",
"sqlite",
"sqlite3",
"ts",
"typescript",
"js",
"javascript",
"entity",
"ddd",
"slim-ef",
"unit-of-work",
"data-mapper",
"identity-map"
],
"author": "bugmaker-237",
"license": "ISC",
"bugs": {
"url": "https://github.com/bugMaker-237/slim-ef/issues"
},
"homepage": "https://github.com/bugMaker-237/slim-ef#readme",
"devDependencies": {
"@types/jest": "^26.0.9",
"@types/node": "^14.0.27",
"jest": "^26.3.0",
"mysql": "^2.18.1",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"sqlite3": "^5.0.0",
"ts-jest": "^26.1.4",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.7"
},
"jest": {
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
},
"testRegex": "tests.*\\.test\\.(ts)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"dependencies": {
"slim-exp": "^0.3.12",
"typeorm": "^0.2.25"
}
}