mirror of https://github.com/calzoneman/sync.git
Update some devdeps, resolves some npm audit warnings
This commit is contained in:
parent
962998c543
commit
f08cce5aed
|
@ -12,7 +12,7 @@ rules:
|
||||||
- 1tbs
|
- 1tbs
|
||||||
- allowSingleLine: true
|
- allowSingleLine: true
|
||||||
indent:
|
indent:
|
||||||
- off # temporary... a lot of stuff needs to be reformatted
|
- off # temporary... a lot of stuff needs to be reformatted | 2020-08-21: I guess it's not so temporary...
|
||||||
- 4
|
- 4
|
||||||
- SwitchCase: 1
|
- SwitchCase: 1
|
||||||
linebreak-style:
|
linebreak-style:
|
||||||
|
@ -20,6 +20,8 @@ rules:
|
||||||
- unix
|
- unix
|
||||||
no-control-regex:
|
no-control-regex:
|
||||||
- off
|
- off
|
||||||
|
no-prototype-builtins:
|
||||||
|
- off # should consider cleaning up the code and turning this back on at some point
|
||||||
no-trailing-spaces:
|
no-trailing-spaces:
|
||||||
- error
|
- error
|
||||||
no-unused-vars:
|
no-unused-vars:
|
||||||
|
|
7
NEWS.md
7
NEWS.md
|
@ -1,3 +1,10 @@
|
||||||
|
2020-08-21
|
||||||
|
==========
|
||||||
|
|
||||||
|
Some of CyTube's dependencies depends on features in newer versions of node.js.
|
||||||
|
Accordingly, node 10 is no longer supported. Administrators are recommended to
|
||||||
|
use node 12 (the active LTS), or node 14 (the current version).
|
||||||
|
|
||||||
2020-06-22
|
2020-06-22
|
||||||
==========
|
==========
|
||||||
|
|
||||||
|
|
18
package.json
18
package.json
|
@ -2,7 +2,7 @@
|
||||||
"author": "Calvin Montgomery",
|
"author": "Calvin Montgomery",
|
||||||
"name": "CyTube",
|
"name": "CyTube",
|
||||||
"description": "Online media synchronizer and chat",
|
"description": "Online media synchronizer and chat",
|
||||||
"version": "3.71.1",
|
"version": "3.72.0",
|
||||||
"repository": {
|
"repository": {
|
||||||
"url": "http://github.com/calzoneman/sync"
|
"url": "http://github.com/calzoneman/sync"
|
||||||
},
|
},
|
||||||
|
@ -56,15 +56,15 @@
|
||||||
"integration-test": "mocha --recursive --exit integration_test"
|
"integration-test": "mocha --recursive --exit integration_test"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/cli": "^7.4.4",
|
"@babel/cli": "^7.10.5",
|
||||||
"@babel/core": "^7.4.4",
|
"@babel/core": "^7.11.4",
|
||||||
"@babel/preset-env": "^7.4.4",
|
"@babel/preset-env": "^7.11.0",
|
||||||
"babel-eslint": "^10.0.1",
|
"babel-eslint": "^10.1.0",
|
||||||
"babel-plugin-add-module-exports": "^1.0.2",
|
"babel-plugin-add-module-exports": "^1.0.2",
|
||||||
"coffeescript": "^1.9.2",
|
"coffeescript": "^1.9.2",
|
||||||
"eslint": "^5.16.0",
|
"eslint": "^7.7.0",
|
||||||
"mocha": "^6.1.4",
|
"mocha": "^8.1.1",
|
||||||
"sinon": "^7.3.2"
|
"sinon": "^9.0.3"
|
||||||
},
|
},
|
||||||
"babel": {
|
"babel": {
|
||||||
"presets": [
|
"presets": [
|
||||||
|
@ -72,7 +72,7 @@
|
||||||
"@babel/env",
|
"@babel/env",
|
||||||
{
|
{
|
||||||
"targets": {
|
"targets": {
|
||||||
"node": "10"
|
"node": "12"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue