forked from sequelize/sequelize-auto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.75 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
{
"name": "sequelize-auto",
"version": "0.4.29",
"description": "Automatically generate bare sequelize models from your database.",
"main": "index",
"keywords": [
"mysql",
"postgres",
"sequelize",
"sequelizejs",
"mapper"
],
"bin": {
"sequelize-auto": "bin/sequelize-auto"
},
"repository": {
"type": "git",
"url": "https://github.com/sequelize/sequelize-auto.git"
},
"bugs": {
"url": "https://github.com/sequelize/sequelize-auto/issues"
},
"nyc": {
"exclude": [
"**/test/**.js"
]
},
"scripts": {
"test": "./node_modules/.bin/mocha --globals setImmediate,clearImmediate,__core-js_shared__ --ui tdd --check-leaks --colors -t 15000 --reporter spec \"test/**/*.test.js\"",
"test-postgres": "./node_modules/.bin/cross-env DIALECT=postgres npm run test",
"test-mysql": "./node_modules/.bin/cross-env DIALECT=mysql npm run test",
"test-sqlite": "./node_modules/.bin/cross-env DIALECT=sqlite npm run test",
"test-mssql": "./node_modules/.bin/cross-env DIALECT=mssql npm run test",
"cover": "rm -rf coverage && COVERAGE=true ./node_modules/.bin/nyc -r lcov npm run test",
"cover-mysql": "DIALECT=mysql npm run cover && mv coverage coverage-mysql",
"cover-sqlite": "DIALECT=sqlite npm run cover && mv coverage coverage-sqlite",
"cover-postgres": "DIALECT=postgres npm run cover && mv coverage coverage-postgres",
"cover-postgres-native": "DIALECT=postgres-native npm run cover && mv coverage coverage-postgres-native",
"cover-all": "npm run cover-mysql && npm run cover-postgres && npm run cover-postgres-native && npm run cover-sqlite && npm run merge-coverage",
"merge-coverage": "rm -rf coverage && mkdir coverage && ./node_modules/.bin/lcov-result-merger 'coverage-*/lcov.info' 'coverage/lcov.info'",
"codeclimate-send": "npm install -g codeclimate-test-reporter && CODECLIMATE_REPO_TOKEN=b9a25c5bf4c3875fb46ecb6d3a5f99e49f6872e6b92c074e5725d6dc2cd94f22 codeclimate-test-reporter < coverage/lcov.info",
"codeclimate": "npm run cover-all && npm run codeclimate-send && npm run clean-coverage",
"clean-coverage": "rm -rf coverage && rm -rf coverage-*"
},
"engines": {
"node": ">=0.10"
},
"author": "Daniel Durante <[email protected]>",
"license": "MIT",
"dependencies": {
"async": "^2.1.5",
"eslint": "^4.3.0",
"graceful-fs-extra": "^2.0.0",
"mkdirp": "^0.5.1",
"sequelize": "^3.30.2",
"yargs": "^8.0.1"
},
"devDependencies": {
"chai": "^4.0.1",
"cross-env": "^5.0.0",
"istanbul": "^0.4.5",
"lcov-result-merger": "^1.2.0",
"mkdirp": "^0.5.1",
"mocha": "^4.0.0",
"mysql": "^2.13.0",
"nyc": "^11.0.1",
"pg": "^6.1.5",
"pg-hstore": "^2.3.2",
"sqlite3": "^3.1.8",
"tedious": "^2.0.0"
}
}