-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 949 Bytes
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 949 Bytes
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
{
"name": "unimapperjs",
"version": "1.1.10",
"description": "Universal node.js (native ES6/ES7) LINQ-like object mapper (ORM/ODM) for all types of databases (SQL, NoSQL).",
"author": {
"name": "Roman Jámbor",
"email": "hookcze@gmail.com"
},
"main": "index.js",
"types": "index.d.ts",
"keywords": [
"orm",
"odm",
"database",
"object",
"mapper",
"universal",
"mongodb",
"mysql",
"postgre",
"mssql",
"linq",
"domain",
"entities"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/Hookyns/unimapperjs.git"
},
"engines": {
"node": ">=7.7.0"
},
"devDependencies": {
"@types/node": "^8.0.34",
"mocha": "^4.0.1",
"mocha-junit-reporter": "^1.15.0",
"mysql2": "latest",
"typescript": "^2.5.3"
},
"dependencies": {
"json-prettify": "^1.2.0",
"uuid": "^3.0.1"
},
"scripts": {
"test": "mocha -S",
"test-report": "mocha -S --reporter mocha-junit-reporter"
}
}