forked from sequelize/sequelize-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.77 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
{
"name": "sequelize-typescript",
"version": "0.2.4",
"description": "Decorators and some other extras for sequelize (v3 + v4)",
"scripts": {
"build": "tsc --project lib/models/v4 && tsc",
"build-tests-es5": "tsc --project test",
"build-tests-es6": "tsc --project test --target es6 && tsc",
"prepare-test-v3": "npm install [email protected] && npm run build-tests-es5",
"prepare-test-v4": "npm install [email protected] && npm run build-tests-es6",
"test-v3": "npm run prepare-test-v3 && npm run exec-tests",
"test-v4": "npm run prepare-test-v4 && npm run exec-tests",
"cover-v3": "npm run prepare-test-v3 && SEQ_SILENT=true nyc --exclude 'lib/models/v4/**/*.js' --all --require source-map-support/register mocha 'test/specs/**/*.js'",
"cover-v4": "npm run prepare-test-v4 && SEQ_SILENT=true nyc --exclude 'lib/models/v3/**/*.js' --all --require source-map-support/register mocha 'test/specs/**/*.js'",
"exec-tests": "SEQ_SILENT=true mocha 'test/specs/**/*.js'",
"test": "npm run test-v4 && npm run test-v3",
"cover": "npm run cover-v4 && npm run cover-v3",
"lint": "tslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/RobinBuschmann/sequelize-typescript.git"
},
"author": "Robin Buschmann",
"license": "ISC",
"bugs": {
"url": "https://github.com/RobinBuschmann/sequelize-typescript/issues"
},
"homepage": "https://github.com/RobinBuschmann/sequelize-typescript#readme",
"main": "index.js",
"types": "index.d.ts",
"dependencies": {
"@types/node": "6.0.41",
"@types/reflect-metadata": "0.0.4",
"@types/sequelize": "4.0.39",
"es6-shim": "0.35.3"
},
"devDependencies": {
"@types/chai": "3.4.35",
"@types/chai-as-promised": "0.0.29",
"@types/chai-datetime": "0.0.30",
"@types/lodash": "4.14.54",
"@types/mocha": "2.2.39",
"@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": "2.1.0",
"lodash": "4.17.4",
"mocha": "3.2.0",
"moment": "2.17.1",
"mysql": "2.13.0",
"nyc": "10.1.2",
"prettyjson": "1.2.1",
"reflect-metadata": "0.1.9",
"sinon": "1.17.7",
"sinon-chai": "2.8.0",
"source-map-support": "0.4.14",
"sqlite3": "3.1.8",
"tslint": "4.3.1",
"typescript": "2.2.1",
"uuid-validate": "0.0.2"
},
"engines": {
"node": ">=0.8.15"
},
"nyc": {
"lines": 85,
"statements": 85,
"functions": 85,
"branches": 85,
"include": [
"lib/**/*.js"
],
"exclude": [
"test/**/*.js"
],
"reporter": [
"lcov",
"text-summary"
],
"cache": true,
"all": true,
"check-coverage": true,
"report-dir": "./coverage"
}
}