forked from sequelize/sequelize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
142 lines (142 loc) · 6.28 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "sequelize",
"description": "Multi dialect ORM for Node.JS/io.js",
"version": "3.24.3-convoy-patched",
"author": "Sascha Depold <sascha@depold.com>",
"contributors": [
{
"name": "Sascha Depold",
"email": "sascha@depold.com"
},
{
"name": "Jan Aagaard Meier",
"email": [
"janzeh@gmail.com",
"jmei@itu.dk"
]
},
{
"name": "Daniel Durante",
"email": "me@danieldurante.com"
},
{
"name": "Mick Hansen",
"email": "mick.kasper.hansen@gmail.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/sequelize/sequelize.git"
},
"bugs": {
"url": "https://github.com/sequelize/sequelize/issues"
},
"dependencies": {
"bluebird": "^3.3.4",
"depd": "^1.1.0",
"dottie": "^1.0.0",
"generic-pool": "2.4.2",
"inflection": "^1.6.0",
"lodash": "4.12.0",
"moment": "^2.13.0",
"moment-timezone": "^0.5.4",
"node-uuid": "~1.4.4",
"pg": ">=6.1.2 <7.0.0",
"retry-as-promised": "^2.0.0",
"semver": "^5.0.1",
"shimmer": "1.1.0",
"terraformer-wkt-parser": "^1.1.0",
"toposort-class": "^1.0.1",
"validator": "^5.2.0",
"wkx": "0.2.0"
},
"optionalDependencies": {
"pg-native":"^1.10.0"
},
"devDependencies": {
"@convoy/typescript-core-scripts": "^4.2.4",
"chai": "^3.5.0",
"chai-as-promised": "^5.1.0",
"chai-datetime": "^1.4.0",
"chai-spies": "^0.7.0",
"commander": "^2.6.0",
"continuation-local-storage": "^3.1.4",
"cross-env": "^2.0.1",
"dox": "~0.8.0",
"git": "^0.1.5",
"hints": "^0.2.0",
"istanbul": "^0.4.3",
"jshint": "^2.9.2",
"lcov-result-merger": "^1.2.0",
"mocha": "^2.4.2",
"mysql": "~2.10.1",
"pg-hstore": "^2.3.1",
"pg-native": "^1.8.0",
"pg-types": "^1.11.0",
"rimraf": "^2.5.4",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"sqlite3": "^3.1.4",
"tedious": "^1.13.2",
"watchr": "~2.4.11"
},
"keywords": [
"mysql",
"sqlite",
"postgresql",
"postgres",
"mssql",
"orm",
"nodejs",
"object relational mapper"
],
"main": "index",
"scripts": {
"release": "node ./node_modules/@convoy/typescript-core-scripts/scripts/release.js",
"test": "npm run jshint && npm run teaser && npm run test-unit && npm run test-integration",
"test-docker": "docker-compose run sequelize /bin/sh -c \"npm run test-all\"",
"test-docker-unit": "docker-compose run sequelize /bin/sh -c \"npm run test-unit-all\"",
"test-docker-integration": "docker-compose run sequelize /bin/sh -c \"npm run test-integration-all\"",
"build-docker": "docker-compose build",
"docs": "node docs/docs-generator.js",
"jshint": "./node_modules/.bin/jshint lib test",
"teaser": "echo ''; node -pe \"Array(20 + process.env.DIALECT.length + 3).join('#')\"; echo '# Running tests for '$DIALECT' #'; node -pe \"Array(20 + process.env.DIALECT.length + 3).join('#')\";echo '';",
"test-unit": "mocha --globals setImmediate,clearImmediate --ui tdd --check-leaks --colors -t 30000 --reporter spec \"test/unit/**/*.js\"",
"test-unit-mysql": "cross-env DIALECT=mysql npm run test-unit",
"test-unit-postgres": "cross-env DIALECT=postgres npm run test-unit",
"test-unit-postgres-native": "cross-env DIALECT=postgres-native npm run test-unit",
"test-unit-mariadb": "cross-env DIALECT=mariadb npm run test-unit",
"test-unit-sqlite": "cross-env DIALECT=sqlite npm run test-unit",
"test-unit-mssql": "cross-env DIALECT=mssql npm run test-unit",
"test-unit-all": "npm run test-unit-mysql && npm run test-unit-postgres && npm run test-unit-postgres-native && npm run test-unit-mssql && npm run test-unit-sqlite && npm run test-unit-mariadb",
"test-integration": "mocha --globals setImmediate,clearImmediate --ui tdd --check-leaks --colors -t 30000 --reporter spec \"test/integration/**/*.test.js\"",
"test-integration-mysql": "cross-env DIALECT=mysql npm run test-integration",
"test-integration-postgres": "cross-env DIALECT=postgres npm run test-integration",
"test-integration-postgres-native": "cross-env DIALECT=postgres-native npm run test-integration",
"test-integration-mariadb": "cross-env DIALECT=mariadb npm run test-integration",
"test-integration-sqlite": "cross-env DIALECT=sqlite npm run test-integration",
"test-integration-mssql": "cross-env DIALECT=mssql npm run test-integration",
"test-integration-all": "npm run test-integration-mysql && npm run test-integration-postgres && npm run test-integration-postgres-native && npm run test-integration-mssql && npm run test-integration-sqlite && npm run test-integration-mariadb",
"test-mysql": "cross-env DIALECT=mysql npm test",
"test-sqlite": "cross-env DIALECT=sqlite npm test",
"test-postgres": "cross-env DIALECT=postgres npm test",
"test-pgsql": "npm run test-postgres",
"test-postgres-native": "cross-env DIALECT=postgres-native npm test",
"test-postgresn": "npm run test-postgres-native",
"test-mariadb": "cross-env DIALECT=mariadb npm test",
"test-mssql": "cross-env DIALECT=mssql npm test",
"test-all": "npm run test-mysql && npm run test-sqlite && npm run test-postgres && npm run test-postgres-native && npm run test-mariadb && npm run test-mssql",
"cover": "rimraf coverage && npm run teaser && npm run cover-unit && npm run cover-integration && npm run merge-coverage",
"cover-integration": "cross-env COVERAGE=true node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -t 60000 --ui tdd \"test/integration/**/*.test.js\" && node -e \"require('fs').renameSync('coverage/lcov.info', 'coverage/integration.info')\"",
"cover-unit": "cross-env COVERAGE=true node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -t 30000 --ui tdd \"test/unit/**/*.test.js\" && node -e \"require('fs').renameSync('coverage/lcov.info', 'coverage/unit.info')\"",
"merge-coverage": "lcov-result-merger \"coverage/*.info\" \"coverage/lcov.info\"",
"sscce": "docker-compose run sequelize /bin/sh -c \"node sscce.js\"",
"sscce-mysql": "cross-env DIALECT=mysql npm run sscce",
"sscce-postgres": "cross-env DIALECT=postgres npm run sscce",
"sscce-sqlite": "cross-env DIALECT=sqlite npm run sscce"
},
"engines": {
"node": ">=0.6.21"
},
"license": "MIT"
}