This repository has been archived by the owner on Mar 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
62 lines (62 loc) · 1.6 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
{
"name": "sqlectron-term",
"version": "1.0.0",
"description": "sqlectron command line interface",
"main": "lib/index.js",
"preferGlobal": true,
"bin": {
"sqlectron-term": "./bin/sqlectron-term.js"
},
"scripts": {
"test": "npm run lint",
"lint": "eslint src",
"clean": "rm -rf lib",
"build": "babel --optional runtime src --out-dir lib",
"dev": "babel-node src",
"prepublish": "npm run test && npm run clean && npm run build",
"start": "node ."
},
"repository": {
"type": "git",
"url": "[email protected]:sqlectron/sqlectron-term.git"
},
"keywords": [
"sqlectron",
"mysql",
"postgres",
"postgresql",
"db"
],
"author": "Eduardo Nunes (https://github.com/esnunes)",
"contributors": [
"Eduardo Nunes (https://github.com/esnunes)",
"Max Claus Nunes (https://github.com/maxcnunes)",
"Vinicius Krolow (https://github.com/krolow)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sqlectron/sqlectron-term/issues"
},
"homepage": "https://github.com/sqlectron/sqlectron-term",
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^4.1.1",
"eslint": "^1.3.1",
"eslint-config-airbnb": "^0.1.0",
"eslint-plugin-react": "^3.3.1"
},
"dependencies": {
"babel-polyfill": "^6.0.16",
"babel-runtime": "^5.8.24",
"blessed": "^0.1.81",
"history": "^1.9.1",
"lodash": "^3.10.1",
"react": "^0.14.2",
"react-blessed": "^0.1.7",
"react-redux": "^2.1.2",
"react-router": "^1.0.0-rc1",
"redux": "^3.0.0",
"redux-thunk": "^0.1.0",
"sqlectron-core": "^0.3.1"
}
}