forked from tanjentjs/ts-orm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 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
40
41
{
"name": "tanjentjs-ts-orm",
"version": "0.0.0",
"description": "An object relational model which uses typescript annotations to define the schema",
"main": "src/index",
"scripts": {
"lint": "tslint -e \"node_modules/**\" -e \"typings/**\" -e \"**/*.d.ts\" \"**/*.ts\"",
"prepublish": "typings install && tsc",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tanjentjs/ts-orm.git"
},
"author": "Aaron Aichlmayr <waterfoul@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tanjentjs/ts-orm/issues"
},
"homepage": "https://github.com/tanjentjs/ts-orm#readme",
"devDependencies": {
"@angular/core": "^2.0.0-rc.3",
"rxjs": "^5.0.0-beta.6",
"tslint": "^3.12.1",
"typescript": "^1.8.10",
"typings": "^1.3.1",
"zone.js": "^0.6.12"
},
"peerDependencies": {
"typescript": "^1.8.10",
"typings": "^1.3.1"
},
"dependencies": {
"bunyan": "^1.8.1",
"es6-shim": "^0.35.1",
"lodash": "^4.13.1",
"moment": "^2.13.0",
"reflect-metadata": "^0.1.3",
"sequelize": "^3.23.4"
}
}