Files
tauri-webpack/package.json
nothingismagick ffe37d3a39 Merge pull request #9 from tauri-apps/renovate/eslint-plugin-node-11.x
Update dependency eslint-plugin-node to v11
2020-01-03 12:12:51 +01:00

73 lines
1.8 KiB
JSON

{
"name": "@tauri-apps/tauri-webpack",
"version": "0.2.0",
"description": "Webpack configuration for Tauri.",
"main": "index.js",
"scripts": {
"test": "jest",
"lint-fix": "eslint --fix ./plugins/*.js ./*.js",
"lint:lockfile": "lockfile-lint --path yarn.lock --type yarn --validate-https --allowed-hosts npm yarn"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/tauri"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tauri-apps/tauri-webpack.git"
},
"keywords": [
"tauri",
"webpack"
],
"contributors": [
"Tauri Team <team@tauri-apps.org> (https://tauri-apps.org)",
"Lucas Fernandes Gonçalves Nogueira <lucas@quasar.dev>",
"Daniel Thompson-Yvetot <denjell@sfosc.org>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tauri-apps/tauri-webpack/issues"
},
"homepage": "https://github.com/tauri-apps/tauri-webpack#readme",
"dependencies": {
"tauri": "^0.3.0",
"webpack-chain": "^6.2.0",
"webpack-shell-plugin": "0.5.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"dotenv": "8.2.0",
"eslint": "6.8.0",
"eslint-config-standard": "14.1.0",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-lodash-template": "0.15.0",
"eslint-plugin-node": "11.0.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-security": "1.4.0",
"eslint-plugin-standard": "4.0.1",
"husky": "3.1.0",
"jest": "24.9.0",
"jest-mock-process": "1.2.0",
"lint-staged": "9.5.0",
"lockfile-lint": "3.0.5",
"promise": "8.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": [
"eslint --fix",
"git add"
],
"engines": {
"node": ">= 10.17.0",
"npm": ">= 6.6.0",
"yarn": ">= 1.19.1"
}
}