This repository has been archived by the owner on Nov 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.55 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
{
"name": "sequelize-auto",
"version": "0.4.18",
"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/urbansim/sequelize-auto.git"
},
"bugs": {
"url": "https://github.com/urbansim/sequelize-auto/issues"
},
"nyc": {
"exclude": [
"**/test/**.js"
]
},
"scripts": {
"test": "./node_modules/.bin/mocha --globals setImmediate,clearImmediate --ui tdd --check-leaks --colors -t 15000 --reporter spec 'test/**/*.test.js'",
"test-postgres": "DIALECT=postgres npm run test",
"test-mysql": "DIALECT=mysql npm run test",
"test-sqlite": "DIALECT=sqlite 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": "^1.2.1",
"graceful-fs-extra": "^2.0.0",
"mkdirp": "^0.5.1",
"sequelize": "git+https://github.com/urbansim/sequelize.git",
"yargs": "^4.7.1"
},
"devDependencies": {
"chai": "^3.5.0",
"istanbul": "^0.4.2",
"lcov-result-merger": "^1.0.2",
"mkdirp": "^0.5.1",
"mocha": "^2.4.5",
"mysql": "^2.7.0",
"nyc": "^6.1.1",
"pg": "^4.4.0",
"pg-hstore": "^2.3.2",
"sqlite3": "^3.1.1",
"tedious": "^1.11.2"
}
}