This repository has been archived by the owner on Dec 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
162 lines (162 loc) · 6.24 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"name": "@southbanksoftware/dbkoda-controller",
"gitName": "dbkoda-controller",
"fullName": "dbKoda Controller",
"description": "dbKoda Controller built with state of the art Feathers stack",
"version": "1.1.0",
"author": {
"name": "Southbank Software",
"email": "[email protected]",
"url": "http://southbanksoftware.com"
},
"main": "lib/",
"keywords": ["feathers", "mongodb", "shell", "api", "xterm"],
"engines": {
"node": ">= 8.9.1"
},
"apiKey": "RnIX59L6lPiNIaTyoY4cEQ==",
"scripts": {
"postinstall": "yarn run clean && yarn run build",
"dev": "yarn run dev:cbuild && yarn start",
"dev:debug": "yarn run dev:cbuild && yarn debug",
"dev:test": "UAT=true yarn run dev",
"dev:install": "yarn install --ignore-scripts",
"dev:build":
"babel --source-maps --copy-files --ignore mongoScripts -d lib/ src/ && node bin/combineJavascripts.js",
"dev:cbuild": "yarn run clean && yarn run dev:build",
"dev:watch": "nodemon --watch src --exec \"yarn dev\"",
"dev:watch:sampleConnections":
"babel src/services/top-connections/sampleConnections.js --source-maps --watch --out-file lib/services/top-connections/sampleConnections.js",
"dev:chrome":
"/Applications/Google\\ Chrome.app/Contents/MacOS/Google\\ Chrome --remote-debugging-port=9222 --no-first-run --user-data-dir=/tmp/chrome-dev-profile",
"start": "node lib/",
"debug": "node --inspect-brk=0.0.0.0:9222 .",
"clean": "rimraf lib controller-dev.log",
"build":
"babel --copy-files --ignore mongoScripts -d lib/ src/ && node bin/combineJavascripts.js",
"test": "yarn flow && yarn run eslint && yarn run test:all",
"test:win": "yarn flow && yarn run eslint && yarn run test:all:win",
"eslint": "eslint --ignore-pattern src/mongoScripts src/. tests/.",
"test:integration":
"rimraf data && NODE_ENV=test nyc mocha tests/integration/ --opts mocha.opts -t 20000",
"test:integration:win":
"rimraf data && set NODE_ENV=test&& nyc mocha tests/integration/ --opts mocha.opts -t 20000",
"test:unit": "NODE_ENV=test nyc mocha tests/unit/ --opts mocha.opts",
"test:dev": "NODE_ENV=test mocha --opts mocha.opts tests/ -f",
"test:unit:win": "set NODE_ENV=test&& nyc mocha tests/unit/ --opts mocha.opts",
"test:all":
"rimraf coverage && NODE_ENV=test nyc --reporter=html mocha tests/unit tests/integration -t 20000 --opts mocha.opts",
"test:all:win":
"rimraf coverage && set NODE_ENV=test&& nyc --reporter=html mocha tests/unit tests/integration -t 20000 --opts mocha.opts",
"test:report": "open -b com.google.chrome coverage/index.html",
"docs": "yarn run esdoc && open -b com.google.chrome ./docs/index.html",
"esdoc": "rimraf docs && esdoc -c .esdoc.json",
"flow": "flow",
"flow:install": "flow-typed install --overwrite --skip",
"format":
"bash -c 'INPUT=$(IFS=\"\n\"; echo \"$0\n$*\"); FI=$(egrep '\"'\"'\\.jsx?$|\\.json$|\\.scss$'\"'\"' <<< \"$INPUT\"); if [[ ! -z \"$FI\" ]]; then prettier --write $FI; fi; FI=$(egrep '\"'\"'\\.jsx?$'\"'\"' <<< \"$INPUT\"); if [[ ! -z \"$FI\" ]]; then eslint --fix $FI; fi'",
"prepush": "yarn flow",
"precommit":
"INPUT=$(git diff --name-only --cached --diff-filter=d); if [[ ! -z \"$INPUT\" ]]; then yarn format $INPUT; git add $INPUT; fi"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SouthbankSoftware/dbkoda-controller.git"
},
"license": "AGPL-3.0",
"private": true,
"bugs": {
"url": "https://github.com/SouthbankSoftware/dbkoda-controller/issues"
},
"homepage": "https://github.com/SouthbankSoftware/dbkoda-controller#readme",
"dependencies": {
"ajv": "^5.5.0",
"ajv-keywords": "^2.1.1",
"archiver": "^2.1.0",
"babel-polyfill": "^6.26.0",
"bcrypt": "^1.0.3",
"body-parser": "^1.18.2",
"chokidar": "^2.0.3",
"compare-versions": "^3.3.0",
"compression": "^1.7.1",
"cors": "^2.8.1",
"crypto-js": "^3.1.9-1",
"debug": "^3.1.0",
"decache": "^4.4.0",
"deep-diff": "^1.0.1",
"escape-string-regexp": "^1.0.5",
"eslint": "^4.12.0",
"expression-parser": "^1.0.0",
"feathers": "^2.2.3",
"feathers-client": "^2.4.0",
"feathers-configuration": "^0.4.2",
"feathers-errors": "^2.9.2",
"feathers-hooks": "^2.1.2",
"feathers-hooks-common": "^3.10.0",
"feathers-primus": "^2.2.1",
"feathers-rest": "^1.8.1",
"feathers-swagger": "^0.6.0",
"find": "^0.2.9",
"flat": "^4.0.0",
"fs-extra": "^4.0.2",
"generic-pool": "^3.2.0",
"js-yaml": "^3.10.0",
"lodash": "^4.17.10",
"md5-hex": "^2.0.0",
"moment": "^2.21.0",
"mongodb": "^3.1.3",
"mongodb-uri": "^0.9.7",
"nanoid": "^1.0.2",
"node-pty": "^0.7.4",
"node-queue-lib": "0.0.28",
"node-uuid": "^1.4.8",
"open-ssh-tunnel": "github:SouthbankSoftware/open-ssh-tunnel",
"openport": "0.0.4",
"passport": "^0.4.0",
"pkginfo": "^0.4.1",
"ps-tree": "^1.1.0",
"queue": "^4.4.2",
"raygun": "^0.9.1",
"request-promise": "^4.2.2",
"rss-parser": "^2.10.8",
"rxjs": "^5.5.5",
"serve-favicon": "^2.4.5",
"shelljs": "^0.7.6",
"ssh2": "^0.5.5",
"strip-ansi": "^4.0.0",
"winston": "^3.0.0-rc5",
"winston-daily-rotate-file": "^3.1.3",
"ws": "^3.3.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.23.1",
"babel-eslint": "^8.0.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-root-import": "^5.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"esdoc": "^1.0.4",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"flow-bin": "^0.70.0",
"flow-typed": "^2.4.0",
"husky": "^0.14.3",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^4.0.1",
"nodemon": "^1.12.1",
"nyc": "^11.3.0",
"prettier": "1.12.1",
"request": "^2.83.0",
"rimraf": "^2.6.2",
"source-map-support": "^0.5.0",
"strip-comments": "^0.4.4",
"test-utils": "^1.1.1"
}
}