forked from sequelize/sequelize-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.44 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": "sequelize-typescript",
"version": "1.1.0-beta.0",
"description": "Decorators and some other features for sequelize",
"scripts": {
"build": "tsc",
"test": "mocha",
"cover": "nyc mocha",
"lint": "tslint -c tslint.json --project tsconfig.json",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RobinBuschmann/sequelize-typescript.git"
},
"keywords": [
"orm",
"object relational mapper",
"sequelize",
"typescript",
"decorators",
"mysql",
"sqlite",
"postgresql",
"postgres",
"mssql"
],
"author": "Robin Buschmann",
"license": "MIT",
"bugs": {
"url": "https://github.com/RobinBuschmann/sequelize-typescript/issues"
},
"homepage": "https://github.com/RobinBuschmann/sequelize-typescript#readme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"browser": "dist/browser/index.js",
"dependencies": {
"glob": "7.1.2"
},
"devDependencies": {
"@types/bluebird": "3.5.25",
"@types/chai": "3.4.35",
"@types/chai-as-promised": "0.0.29",
"@types/chai-datetime": "0.0.30",
"@types/lodash": "4.14.109",
"@types/mocha": "2.2.39",
"@types/node": "11.13.4",
"@types/prettyjson": "0.0.28",
"@types/sinon": "1.16.35",
"@types/sinon-chai": "2.7.27",
"chai": "3.5.0",
"chai-as-promised": "6.0.0",
"chai-datetime": "1.4.1",
"codecov": "3.1.0",
"copyfiles": "2.1.0",
"has-flag": "2.0.0",
"lodash": "4.17.13",
"mocha": "5.2.0",
"moment": "2.21.0",
"mysql2": "1.3.5",
"nyc": "13.3.0",
"prettyjson": "1.2.1",
"reflect-metadata": "0.1.9",
"sequelize": "5.15.1",
"sinon": "1.17.7",
"sinon-chai": "2.8.0",
"source-map-support": "0.4.14",
"sqlite3": "4.0.4",
"ts-node": "7.0.1",
"tslint": "5.14.0",
"typescript": "3.3.3",
"uuid-validate": "0.0.2"
},
"peerDependencies": {
"@types/bluebird": "*",
"@types/node": "*",
"@types/validator": "*",
"reflect-metadata": "*",
"sequelize": "^5.1.0"
},
"engines": {
"node": ">=0.8.15"
},
"nyc": {
"lines": 85,
"statements": 85,
"functions": 85,
"branches": 85,
"include": [
"src"
],
"exclude": [
"test"
],
"extension": [
".ts"
],
"reporter": [
"lcov",
"text-summary"
],
"cache": true,
"all": true,
"check-coverage": true,
"report-dir": "./coverage"
}
}