Files
tauri-webpack/package.json
2019-12-16 00:47:23 +01:00

71 lines
1.8 KiB
JSON

{
"name": "@tauri-apps/tauri-webpack",
"version": "0.1.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": {
"webpack-shell-plugin": "0.5.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"dotenv": "8.2.0",
"eslint": "6.7.2",
"eslint-config-standard": "14.1.0",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-lodash-template": "0.15.0",
"eslint-plugin-node": "10.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.3",
"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"
}
}