tauri/package.json

69 lines
1.7 KiB
JSON
Raw Normal View History

{
2019-09-06 22:26:28 +03:00
"name": "@tauri-apps/tauri",
2019-10-15 18:09:12 +03:00
"version": "0.0.1-utility.15",
"description": "Multi-binding collection of libraries and templates for building Tauri apps",
"bin": {
2019-09-06 22:26:28 +03:00
"tauri": "./mode/bin/tauri.js"
},
"scripts": {
"test": "jest --coverage",
"lint-fix": "eslint --ext .js mode --fix"
},
"repository": {
"type": "git",
2019-09-06 22:26:28 +03:00
"url": "git+https://github.com/tauri-apps/tauri.git"
},
2019-09-06 22:26:28 +03:00
"author": "Tauri Apps",
"license": "MIT",
"bugs": {
2019-09-06 22:26:28 +03:00
"url": "https://github.com/tauri-apps/tauri/issues"
},
2019-09-06 22:26:28 +03:00
"homepage": "https://github.com/tauri-apps/tauri#readme",
"publishConfig": {
"access": "public"
},
"engines": {
2019-10-07 23:36:29 +03:00
"node": ">= 10.16.3",
"npm": ">= 6.6.0",
"yarn": ">= 1.19.1"
},
"dependencies": {
"@iarna/toml": "^2.2.3",
"babel-plugin-system-import-transformer": "^4.0.0",
"chalk": "^2.4.2",
"chokidar": "^3.0.2",
"cross-spawn": "^6.0.5",
"fast-glob": "^3.0.4",
"fs-extra": "^8.1.0",
"html-webpack-inline-source-plugin": "^0.0.10",
"lodash.debounce": "^4.0.8",
"lodash.template": "^4.5.0",
"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"
]
}