feat/web-view (#52)

* feat(web-view): revert to now well-maintained upstream web-view [WIP]

* feat(tests): add jest testing, first test

* feat(lint): install, config and fix
This commit is contained in:
nothingismagick
2019-11-16 19:51:46 +01:00
committed by GitHub
parent 1ee1933da5
commit 5ec8e2f2a0
37 changed files with 4882 additions and 162 deletions

View File

@@ -6,8 +6,8 @@
"tauri": "./mode/bin/tauri.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"devUp": ""
"test": "jest --coverage",
"lint-fix": "eslint --ext .js mode --fix"
},
"repository": {
"type": "git",
@@ -25,7 +25,7 @@
"engines": {
"node": ">= 10.16.3",
"npm": ">= 6.6.0",
"yarn": ">= 1.17.3"
"yarn": ">= 1.19.1"
},
"dependencies": {
"@iarna/toml": "^2.2.3",
@@ -41,5 +41,28 @@
"minimist": "^1.2.0",
"ms": "^2.1.2",
"webpack-merge": "^4.2.1"
}
},
"devDependencies": {
"dotenv": "^8.2.0",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "8.0.0",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-standard": "4.0.0",
"husky": "1.2.0",
"jest": "24.9.0",
"jest-mock-process": "^1.2.0",
"lint-staged": "^9.4.2",
"promise": "^8.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": [
"eslint --fix",
"git add"
]
}