-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
78 lines (78 loc) · 2.27 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
{
"name": "redsmin",
"description": "Redsmin proxy daemon for Redsmin fully-featured Redis GUI",
"version": "5.0.1",
"keywords": [
"redis",
"redis-gui",
"gui",
"redsmin",
"proxy"
],
"author": "Francois-Guillaume Ribreau <npm@fgribreau.com> (http://fgribreau.com)",
"contributors": [],
"homepage": "https://redsmin.com",
"preferGlobal": true,
"main": "app",
"bugs": {
"url": "https://github.com/Redsmin/proxy/issues",
"email": "bugs@redsmin.com"
},
"scripts": {
"start": "node ./bin/redsmin",
"ci": "npm run test",
"test": "multi='spec=- xunit=test/file.xml doc=test/docs.html' nyc --all --statements=74 --lines=75 --functions=70 --branches=57 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=test/coverage -- mocha -t 5000 -R mocha-multi $(find lib -name '*.test.js')",
"send-coverage": "cat ./test/coverage/lcov.info | coveralls",
"test-watch": "multi='spec=- xunit=test/file.xml doc=test/docs.html' mocha -w -t 10000 -g 'should handle async connect disconnect' -R mocha-multi lib/**.test.js",
"update": "updtr",
"changelog": "conventional-changelog -i CHANGELOG.md -s -r 0",
"changelog-git": "npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master",
"release-patch": "npm run ci && npm-release patch && npm run changelog-git"
},
"bin": {
"redsmin": "./bin/redsmin"
},
"nyc": {
"exclude": [
"node_modules",
"dist",
"test/**",
"*.test.js",
"webpack.config.js",
"*.js"
]
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/Redsmin/proxy/blob/master/LICENSE"
}
],
"dependencies": {
"backoff": "^2.4.1",
"common-env": "^6.1.0",
"debug": "^4.0.1",
"lodash": "^4.15.0",
"npm-release": "^1.0.0",
"update-notifier": "^4.1.0",
"winston": "^3.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"conventional-changelog-cli": "^2.0.31",
"coveralls": "^3.1.0",
"mocha": "^7.1.2",
"mocha-multi": "^1.1.3",
"nyc": "^15.0.1",
"sinon": "^9.0.2",
"updtr": "^3.1.0"
},
"engines": {
"node": ">=6"
},
"engineStrict": true,
"repository": {
"type": "git",
"url": "git://github.com/Redsmin/proxy.git"
}
}