-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 949 Bytes
/
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
{
"name": "@painless/orm",
"version": "1.1.1",
"description": "ORM for TypeScript.",
"keywords": [
"orm",
"typescript",
"typescript-orm"
],
"homepage": "https://github.com/Ryuzaki42/orm",
"license": "MIT",
"author": {
"name": "Vladyslav Mozhvylo",
"email": "[email protected]"
},
"main": "src/index.ts",
"repository": {
"type": "git",
"url": "https://github.com/Ryuzaki42/orm"
},
"scripts": {
"test": "ts-node test/index.ts"
},
"devDependencies": {
"@types/lodash": "^4.14.144",
"@types/node": "^12.7.12",
"@types/pg": "^7.11.2",
"pg": "^7.12.1",
"prettier": "^1.18.2",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.6.4"
},
"dependencies": {
"lodash": "^4.17.15",
"reflect-metadata": "^0.1.13"
}
}