forked from sequelize/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.04 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
{
"name": "sequelize-cli",
"version": "4.0.0",
"description": "The Sequelize CLI",
"bin": {
"sequelize": "./lib/sequelize"
},
"dependencies": {
"bluebird": "^3.5.1",
"cli-color": "^1.2.0",
"fs-extra": "^5.0.0",
"js-beautify": "^1.7.4",
"lodash": "^4.17.5",
"resolve": "^1.5.0",
"umzug": "^2.1.0",
"yargs": "^8.0.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-async-to-module-method": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.24.1",
"eslint": "^4.11.0",
"expect.js": "^0.3.1",
"gulp": "^3.9.1",
"mocha": "^3.5.0",
"mysql": "^2.15.0",
"nodeify": "^1.0.1",
"pg": "^7.*",
"pg-hstore": "^2.x",
"sequelize": "^4.x",
"sqlite3": "^3.x",
"through2": "^2.0.3"
},
"options": {
"mocha": "--require scripts/mocha-bootload.js --check-leaks --timeout 30000 --colors --reporter spec"
},
"eslintIgnore": [
"test/support",
"src/assets"
],
"scripts": {
"build": "npm run build-clean && babel src -d lib && npm run build-bin && npm run build-assets",
"build-bin": "mv ./lib/sequelize.js ./lib/sequelize && chmod +x ./lib/sequelize",
"build-assets": "cp -R ./src/assets ./lib/",
"build-clean": "rm -rf ./lib/",
"lint": "eslint test src",
"test-raw": "mocha $npm_package_options_mocha 'test/**/*.test.js'",
"test": "npm run lint && npm run build && npm run test-raw"
},
"repository": {
"type": "git",
"url": "git://github.com/sequelize/cli.git"
},
"keywords": [
"sequelize",
"cli"
],
"author": "Sascha Depold <sascha@depold.com>",
"contributors": [
{
"name": "Sushant Dhiman",
"email": "sushantdhiman@outlook.com"
},
{
"name": "Paulo R Lopes",
"email": "prplopes@gmail.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sequelize/cli/issues"
},
"homepage": "https://github.com/sequelize/cli",
"engines": {
"node": ">=4.0.0"
}
}