This repository has been archived by the owner on Mar 19, 2019. It is now read-only.
forked from typeorm/typeorm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.58 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "typeorm",
"private": true,
"version": "0.1.7",
"description": "Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, WebSQL, MongoDB databases.",
"license": "MIT",
"readmeFilename": "README.md",
"author": {
"name": "Umed Khudoiberdiev",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/typeorm/typeorm.git"
},
"bugs": {
"url": "https://github.com/typeorm/typeorm/issues"
},
"tags": [
"orm",
"typescript",
"typescript-orm",
"mysql",
"mysql-orm",
"postgresql",
"postgresql-orm",
"mariadb",
"mariadb-orm",
"sqlite",
"sqlite-orm",
"sql-server",
"sql-server-orm",
"oracle",
"oracle-orm",
"websql",
"websql-orm"
],
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/chai-as-promised": "7.1.0",
"@types/debug": "0.0.30",
"@types/mocha": "^2.2.42",
"@types/node": "^8.0.41",
"@types/rimraf": "^2.0.2",
"@types/sinon": "^2.3.6",
"chai": "^3.5.0",
"chai-as-promised": "^7.1.1",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-file": "^0.3.0",
"gulp-istanbul": "^1.1.2",
"gulp-mocha": "^3.0.1",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.6.1",
"gulp-shell": "^0.6.3",
"gulp-sourcemaps": "^2.6.1",
"gulp-tslint": "^8.1.2",
"gulp-typescript": "^3.2.2",
"gulp-uglify": "^3.0.0",
"gulpclass": "^0.1.2",
"mocha": "^2.5.3",
"mongodb": "^2.2.33",
"mssql": "^4.0.4",
"mysql": "^2.15.0",
"mysql2": "^1.4.1",
"pg": "^7.3.0",
"redis": "^2.8.0",
"remap-istanbul": "^0.9.5",
"rimraf": "^2.6.2",
"sinon": "^2.4.1",
"sinon-chai": "^2.13.0",
"sql.js": "^0.4.0",
"sqlite3": "^3.1.13",
"ts-node": "^3.3.0",
"tslint": "^5.6.0",
"tslint-stylish": "^2.1.0",
"typescript": "^2.6.1"
},
"dependencies": {
"app-root-path": "^2.0.1",
"chalk": "^2.0.1",
"cli-highlight": "^1.1.4",
"debug": "^3.1.0",
"dotenv": "^4.0.0",
"glob": "^7.1.2",
"js-yaml": "^3.8.4",
"mkdirp": "^0.5.1",
"reflect-metadata": "^0.1.10",
"xml2js": "^0.4.17",
"yargonaut": "^1.1.2",
"yargs": "^9.0.1"
},
"scripts": {
"test": "gulp ci-tests",
"compile": "tsc",
"setup:config": "gulp createTravisOrmConfig",
"package": "gulp package"
},
"bin": {
"typeorm": "./cli.js"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/typeorm",
"logo": "https://opencollective.com/opencollective/logo.txt"
}
}