KawAnime/package.json

86 lines
2.4 KiB
JSON
Raw Normal View History

2016-11-21 14:33:22 +00:00
{
2019-04-08 23:06:17 +00:00
"name": "kawanime",
"version": "0.4.0",
"main": "background.js",
2017-04-15 14:20:02 +00:00
"repository": "https://github.com/Kylart/KawAnime.git",
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",
"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",
"lint": "vue-cli-service lint",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"test:e2e": "vue-cli-service test:e2e",
"test:unit": "vue-cli-service test:unit"
2016-11-21 14:33:22 +00:00
},
"dependencies": {
"buttercup": "^2.11.0",
"chalk": "^2.4.2",
2018-12-27 23:27:07 +00:00
"electron-updater": "^4.0.6",
2018-10-04 20:32:41 +00:00
"lodash": "^4.17.11",
"lru-cache": "^5.1.1",
"mal-scraper": "^2.6.0",
2018-03-14 20:46:43 +00:00
"matroska-subtitles": "^2.0.3",
"mime": "^2.4.2",
"moment": "^2.24.0",
2018-10-04 20:32:41 +00:00
"nyaapi": "^2.0.5",
"randomstring": "^1.1.5",
"range-parser": "^1.2.0",
"register-service-worker": "^1.6.2",
"velocity-animate": "^1.5.2",
"vue": "^2.6.10",
2018-12-27 23:27:07 +00:00
"vue-router": "^3.0.2",
"vuetify": "^1.5.9",
"vuex": "^3.1.0",
"webtorrent": "^0.103.1",
2018-10-04 20:32:41 +00:00
"zettai": "^2.0.2"
},
2017-04-15 14:16:14 +00:00
"devDependencies": {
"@vue/cli-plugin-babel": "^3.5.5",
"@vue/cli-plugin-e2e-cypress": "^3.5.1",
"@vue/cli-plugin-eslint": "^3.5.1",
"@vue/cli-plugin-pwa": "^3.5.1",
"@vue/cli-plugin-unit-mocha": "^3.5.1",
"@vue/cli-service": "^3.5.3",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-eslint": "^10.0.1",
2018-10-04 20:32:41 +00:00
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
2018-07-18 13:28:34 +00:00
"cross-env": "^5.2.0",
"electron": "^4.1.4",
"electron-builder": "^20.39.0",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.2.2",
"lint-staged": "^8.1.5",
2018-03-25 15:47:03 +00:00
"pug": "^2.0.3",
"pug-plain-loader": "^1.0.0",
2017-04-15 14:16:14 +00:00
"stylus": "^0.54.5",
2018-03-03 02:06:56 +00:00
"stylus-loader": "^3.0.2",
"vue-cli-plugin-electron-builder": "^1.2.0",
"vue-template-compiler": "^2.6.10"
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
}