-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.93 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
{
"name": "redis-term",
"version": "0.0.4",
"description": "a terminal client for Redis",
"repository": "https://github.com/uki00a/redis-term",
"author": "uki00a",
"license": "MIT",
"engines": {
"node": ">= 8"
},
"bin": {
"redis-term": "./bin/redis-term.js"
},
"keywords": [
"redis",
"blessed",
"react-blessed"
],
"files": [
"lib/",
"bin/"
],
"scripts": {
"build": "NODE_ENV=production babel src --out-dir lib --ignore './src/**/*.test.js'",
"rebuild": "yarn run clean && yarn run build",
"watch": "babel src --verbose --watch --out-dir lib --ignore './src/**/*.test.js'",
"clean": "rm -rf ./lib",
"test": "mocha -r @babel/register './src/**/*.test.js'",
"integration-tests": "mocha -r @babel/register --exit './integration-tests/**/*.test.js'",
"prepublish": "yarn run test && yarn run rebuild"
},
"dependencies": {
"ioredis": "^4.2.0",
"keytar": "^4.4.1",
"lodash": "^4.17.11",
"mkdirp": "^0.5.1",
"neo-blessed": "^0.2.0",
"osenv": "^0.1.5",
"prop-types": "^15.6.2",
"react": "^16.8.6",
"react-blessed": "^0.6.1",
"react-router": "^4.3.1",
"ssh2": "^0.8.2",
"unstated-next": "^1.1.0",
"uuid": "^3.3.2",
"xdg-basedir": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"@babel/plugin-transform-react-jsx": "^7.1.6",
"@babel/register": "^7.0.0",
"@testing-library/react-hooks": "^2.0.1",
"babel-eslint": "^10.0.3",
"babel-plugin-transform-node-env-inline": "^0.4.3",
"eslint": "^5.15.0",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^2.0.1",
"faker": "^4.1.0",
"ioredis-mock": "^4.16.3",
"mocha": "^5.2.0",
"react-test-renderer": "16.8.6",
"stream-buffers": "^3.0.2",
"testdouble": "^3.11.0"
}
}