-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.86 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
{
"name": "tanjentjs-ts-orm",
"version": "0.0.0",
"description": "An object relational model which uses typescript annotations to define the schema",
"main": "index",
"scripts": {
"lint": "tslint -e \"node_modules/**\" -e \"typings/**\" -e \"**/*.d.ts\" \"**/*.ts\"",
"mocha": "./run_mocha.sh",
"coverage": "istanbul check-coverage",
"coveralls": "cat coverage/lcov.info | ./node_modules/.bin/coveralls",
"prepublish": "tsc",
"test": "npm run lint && npm run mocha && npm run coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tanjentjs/ts-orm.git"
},
"author": "Aaron Aichlmayr <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tanjentjs/ts-orm/issues"
},
"homepage": "https://github.com/tanjentjs/ts-orm#readme",
"devDependencies": {
"@angular/common": "^2.0.0-rc.4",
"@angular/compiler": "^2.0.0-rc.4",
"@angular/core": "^2.0.0-rc.4",
"@angular/http": "^2.0.0-rc.4",
"@angular/platform-browser": "^2.0.0-rc.4",
"browser-sync": "^2.13.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"coveralls": "^2.11.9",
"istanbul": "^1.1.0-alpha.1",
"livereload": "^0.5.0",
"mocha": "^3.0.1",
"mockery": "^1.7.0",
"nodemon": "^1.9.2",
"rxjs": "^5.0.0-beta.6",
"sinon": "^1.17.4",
"source-map-support": "^0.4.1",
"sqlite3": "^3.1.6",
"tslint": "^3.12.1",
"typescript": "^2.0.3",
"zone.js": "^0.6.12",
"reflect-metadata": "^0.1.3"
},
"peerDependencies": {
"typescript": "^2.0.3",
"reflect-metadata": "^0.1.3"
},
"dependencies": {
"@types/core-js": "^0.9.34",
"@types/express": "^4.0.33",
"@types/node": "^6.0.45",
"@types/sequelize": "^4.0.38",
"debug": "^2.2.0",
"es6-shim": "^0.35.1",
"lodash": "^4.13.1",
"moment": "^2.13.0",
"sequelize": "^3.24.5"
}
}