KawAnime/package.json

97 lines
2.9 KiB
JSON
Raw Permalink Normal View History

2016-11-21 14:33:22 +00:00
{
"name": "KawAnime",
2019-07-21 23:37:58 +00:00
"version": "0.4.1",
"main": "background.js",
2017-04-15 14:20:02 +00:00
"repository": "https://github.com/Kylart/KawAnime.git",
2019-06-14 11:28:07 +00:00
"description": "The ultimate otaku software",
2017-04-27 22:52:06 +00:00
"author": {
"name": "Kylart",
"email": "Kylart.dev@gmail.com"
2017-04-27 22:52:06 +00:00
},
2016-11-21 14:33:22 +00:00
"license": "MIT",
2017-04-15 14:16:14 +00:00
"scripts": {
"dev": "cross-env NODE_ENV=development vue-cli-service electron:serve",
2019-07-01 22:23:28 +00:00
"start": "cross-env NODE_ENV=production electron dist/bundled/background.js",
"build": "vue-cli-service electron:build",
"pack": "npm run build -- --dir",
"dist": "npm run dist:mac && npm run dist:win && npm run dist:linux",
"dist:mac": "npm run build -- --mac",
"dist:win": "npm run build -- --win --x64 --ia32",
"dist:linux": "npm run build -- --linux deb AppImage",
2019-06-14 11:28:07 +00:00
"publish:mac": "npm run build -- --mac -p always",
"publish:linux": "npm run build -- --linux deb AppImage -p always",
2019-06-14 12:59:43 +00:00
"publish:win": "npm run build -- --win --x64 --ia32 -p always",
"lint": "vue-cli-service lint",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"test": "cross-env IS_TEST=true mocha --reporter mochawesome"
2016-11-21 14:33:22 +00:00
},
"dependencies": {
2019-10-07 00:30:25 +00:00
"anitomy-js": "^3.1.3",
"buttercup": "^2.15.4",
"chalk": "^2.4.2",
"electron-updater": "^4.1.2",
2019-07-21 00:55:58 +00:00
"lodash": "^4.17.15",
2019-07-01 15:08:28 +00:00
"mal-scraper": "^2.6.3",
2018-03-14 20:46:43 +00:00
"matroska-subtitles": "^2.0.3",
2019-07-01 15:08:28 +00:00
"mime": "^2.4.4",
"moment": "^2.24.0",
2019-07-21 00:55:58 +00:00
"nyaapi": "^2.1.0",
2019-05-19 23:02:37 +00:00
"range-parser": "^1.2.1",
"rimraf": "^3.0.0",
"velocity-animate": "^1.5.2",
"vue": "^2.6.10",
2019-09-19 16:24:59 +00:00
"vue-router": "^3.1.3",
2019-10-07 00:30:25 +00:00
"vuetify": "^2.0.18",
2019-05-19 23:02:37 +00:00
"vuex": "^3.1.1",
"webtorrent": "^0.104.0"
},
2017-04-15 14:16:14 +00:00
"devDependencies": {
2019-09-19 16:24:59 +00:00
"@vue/cli-plugin-babel": "^3.11.0",
"@vue/cli-plugin-eslint": "^3.11.0",
"@vue/cli-plugin-pwa": "^3.11.0",
"@vue/cli-plugin-unit-mocha": "^3.11.0",
"@vue/cli-service": "^3.11.0",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.29",
"axios": "^0.19.0",
2019-09-19 16:24:59 +00:00
"babel-eslint": "^10.0.3",
2018-10-04 20:32:41 +00:00
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
2019-09-19 16:24:59 +00:00
"cross-env": "^5.2.1",
"electron": "^4.2.5",
"electron-builder": "20.41.0",
2019-09-19 16:24:59 +00:00
"eslint": "^6.4.0",
2019-07-01 15:08:28 +00:00
"eslint-plugin-vue": "^5.2.3",
2019-09-19 16:24:59 +00:00
"lint-staged": "^9.2.5",
"material-design-icons-iconfont": "^5.0.1",
2019-09-19 16:24:59 +00:00
"mocha": "^6.2.0",
"mochawesome": "^4.1.0",
2019-07-01 15:08:28 +00:00
"pug": "^2.0.4",
"pug-plain-loader": "^1.0.0",
"roboto-fontface": "^0.10.0",
2019-09-19 16:24:59 +00:00
"sass": "^1.22.12",
"sass-loader": "^7.2.0",
"spectron": "^6.0.0",
2019-09-19 16:24:59 +00:00
"stylus": "^0.54.7",
2018-03-03 02:06:56 +00:00
"stylus-loader": "^3.0.2",
"vue-cli-plugin-electron-builder": "^1.3.5",
2019-08-20 10:18:23 +00:00
"vue-cli-plugin-vuetify": "^0.6.3",
"vue-template-compiler": "^2.6.10",
"vuetify-loader": "^1.3.0"
2017-04-27 22:52:06 +00:00
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
2017-04-15 14:16:14 +00:00
}
2016-11-21 14:33:22 +00:00
}