-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 984 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
42
43
44
45
46
47
{
"name": "orm-js",
"version": "0.2.1",
"description": "Database abstraction layer using decorators.",
"typings": "./index.d.ts",
"scripts": {
"prepublish": "cd src && tsc",
"test": "tslint --project src/tsconfig.json"
},
"keywords": [
"orm-js",
"orm",
"typescript",
"decorator",
"decorators",
"entity",
"database",
"repository",
"object-relational-mapping"
],
"author": "Simon \"Tenry\" Burchert",
"homepage": "https://github.com/tenry92/orm-js",
"repository": {
"type": "git",
"url": "https://github.com/tenry92/orm-js.git"
},
"license": "MIT",
"dependencies": {
"change-case": "^3.0.0",
"reflect-metadata": "^0.1.3"
},
"files": [
"abstract-database.js",
"decorators.js",
"orm.js",
"query.js",
"schema.js",
"abstract-database.d.ts",
"decorators.d.ts",
"orm.d.ts",
"query.d.ts",
"schema.d.ts"
],
"devDependencies": {
"tslint": "^3.15.1"
}
}