mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
add some missing deps and linting
This commit is contained in:
parent
689a168828
commit
f8acec3cf6
1 changed files with 16 additions and 7 deletions
23
package.json
23
package.json
|
|
@ -1,29 +1,38 @@
|
||||||
{
|
{
|
||||||
"name": "hyperterm",
|
"name": "hyperterm",
|
||||||
"productName": "HyperTerm",
|
"productName": "HyperTerm",
|
||||||
"version": "0.0.1",
|
"version": "0.1.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"child_pty": "3.0.1",
|
"child_pty": "3.0.1",
|
||||||
"electron-is-dev": "0.1.1",
|
"electron-is-dev": "0.1.1",
|
||||||
"electron-prebuilt": "1.2.5",
|
"electron-prebuilt": "1.2.5",
|
||||||
"uid2": "0.0.3",
|
"electron-packager": "7.1.0",
|
||||||
"child_pty": "3.0.1"
|
"uid2": "0.0.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"eslint": "2.13.1",
|
"eslint": "2.13.1",
|
||||||
"eslint-config-standard": "5.3.1",
|
"eslint-config-standard": "5.3.1",
|
||||||
"eslint-plugin-standard": "1.3.2",
|
"eslint-plugin-promise": "1.3.2",
|
||||||
"eslint-plugin-promise": "1.3.2"
|
"eslint-plugin-standard": "1.3.2"
|
||||||
},
|
},
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
"extends": "standard",
|
"extends": "standard",
|
||||||
"rules": {
|
"rules": {
|
||||||
"yoda": 0,
|
"yoda": 0,
|
||||||
"semi": [2, "always"],
|
"semi": [
|
||||||
|
2,
|
||||||
|
"always"
|
||||||
|
],
|
||||||
"no-unused-vars": 2,
|
"no-unused-vars": 2,
|
||||||
"no-extra-semi": 2,
|
"no-extra-semi": 2,
|
||||||
"semi-spacing": [2, { "before": false, "after": true }]
|
"semi-spacing": [
|
||||||
|
2,
|
||||||
|
{
|
||||||
|
"before": false,
|
||||||
|
"after": true
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue