forked from sqlectron/sqlectron-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.13 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
{
"name": "sqlectron-core",
"version": "8.0.1",
"description": "sqlectron-core",
"main": "lib/index.js",
"author": "The SQLECTRON Team",
"license": "MIT",
"scripts": {
"compile": "babel -d lib/ src/",
"watch": "babel --watch -d lib/ src/",
"prepublish": "npm run compile",
"lint": "eslint src/ spec/",
"test:mysql": "DB_CLIENTS=mysql npm run test",
"test:sqlite": "DB_CLIENTS=sqlite npm run test",
"test:sqlserver": "DB_CLIENTS=sqlserver npm run test",
"test:postgresql": "DB_CLIENTS=postgresql npm run test",
"test:cassandra": "DB_CLIENTS=cassandra npm run test",
"test": "npm run lint && mocha --exit --timeout 40000 --compilers js:babel-core/register --reporter spec ./spec/**/*.spec.js",
"watch-test": "npm run lint && mocha --compilers js:babel/register --watch --reporter spec ./spec/**/*.spec.js"
},
"keywords": [
"sqlectron",
"sql",
"postgres",
"mysql"
],
"repository": {
"type": "git",
"url": "https://github.com/sqlectron/sqlectron-core"
},
"engines": {
"node": ">=6"
},
"dependencies": {
"@sinonjs/formatio": "^3.1.0",
"cassandra-driver": "^3.1.1",
"debug": "^2.2.0",
"env-paths": "^1.0.0",
"mkdirp": "^0.5.1",
"mssql": "^3.0.0",
"mysql": "^2.10.2",
"pg": "git+https://github.com/maxcnunes/node-postgres.git#multiple-statements-v6.1.0",
"portfinder": "^0.4.0",
"sql-query-identifier": "^1.1.0",
"ssh2": "^0.5.0",
"uuid": "^3.0.0",
"valida": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-plugin-transform-es2015-destructuring": "^6.9.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.14.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"eslint": "^3.5.0",
"eslint-config-airbnb-base": "^7.1.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^1.15.0",
"mocha": "^5.2.0",
"sinon": "^1.17.2",
"sqlite3": "^4.0.6"
}
}