UNPKG

2.13 kBJSONView Raw
1{
2 "name": "sequelize-cli",
3 "version": "5.1.0",
4 "description": "The Sequelize CLI",
5 "bin": {
6 "sequelize": "./lib/sequelize"
7 },
8 "dependencies": {
9 "bluebird": "^3.5.1",
10 "cli-color": "^1.2.0",
11 "fs-extra": "^7.0.0",
12 "js-beautify": "^1.7.4",
13 "lodash": "^4.17.5",
14 "resolve": "^1.5.0",
15 "umzug": "^2.1.0",
16 "yargs": "^12.0.2"
17 },
18 "devDependencies": {
19 "babel-cli": "^6.24.1",
20 "babel-plugin-transform-async-to-module-method": "^6.24.1",
21 "babel-plugin-transform-object-rest-spread": "^6.23.0",
22 "babel-preset-env": "^1.6.1",
23 "babel-register": "^6.24.1",
24 "eslint": "^5.7.0",
25 "expect.js": "^0.3.1",
26 "gulp": "^3.9.1",
27 "mocha": "^5.2.0",
28 "mysql2": "^1.6.1",
29 "nodeify": "^1.0.1",
30 "pg": "^7.5.0",
31 "pg-hstore": "^2.3.2",
32 "sequelize": "^4.x",
33 "sqlite3": "^4.0.2",
34 "through2": "^2.0.3"
35 },
36 "options": {
37 "mocha": "--require scripts/mocha-bootload.js --check-leaks --exit --timeout 30000 --colors --reporter spec"
38 },
39 "eslintIgnore": [
40 "test/support",
41 "src/assets"
42 ],
43 "scripts": {
44 "build": "npm run build-clean && babel src -d lib && npm run build-bin && npm run build-assets",
45 "build-bin": "mv ./lib/sequelize.js ./lib/sequelize && chmod +x ./lib/sequelize",
46 "build-assets": "cp -R ./src/assets ./lib/",
47 "build-clean": "rm -rf ./lib/",
48 "lint": "eslint test src",
49 "test-raw": "mocha $npm_package_options_mocha 'test/**/*.test.js'",
50 "test": "npm run lint && npm run build && npm run test-raw"
51 },
52 "repository": {
53 "type": "git",
54 "url": "git://github.com/sequelize/cli.git"
55 },
56 "keywords": [
57 "sequelize",
58 "cli"
59 ],
60 "contributors": [
61 {
62 "name": "Sascha Depold",
63 "email": "sascha@depold.com"
64 },
65 {
66 "name": "Paulo R Lopes",
67 "email": "prplopes@gmail.com"
68 },
69 {
70 "name": "Sushant Dhiman",
71 "email": "sushantdhiman@outlook.com"
72 }
73 ],
74 "license": "MIT",
75 "bugs": {
76 "url": "https://github.com/sequelize/cli/issues"
77 },
78 "homepage": "https://github.com/sequelize/cli",
79 "engines": {
80 "node": ">=6.0.0"
81 }
82}