KawAnime/package.json

111 lines
3.5 KiB
JSON
Raw 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-11-08 14:20:40 +00:00
"start": "cross-env NODE_ENV=production npm run build:after && electron dist/bundled/background.js",
"build": "vue-cli-service electron:build",
2019-11-08 14:20:40 +00:00
"build:after": "node scripts/afterBuild.js",
"build:bindings": "cmake-js build -d bindings -O bindings/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:portable": "npm run build -- --win portable",
"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",
"publish:portable": "npm run build -- --win portable -p always",
"lint": "vue-cli-service lint",
2019-11-08 14:20:40 +00:00
"compile:bindings": "cmake-js compile -d bindings -O bindings/build",
2019-10-28 01:25:40 +00:00
"install:deps": "bash bindings/scripts/install.sh",
"postinstall": "npm run compile:bindings && electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
2019-11-08 14:20:40 +00:00
"test": "cross-env IS_TEST=true npm run build:after && mocha --reporter mochawesome"
2016-11-21 14:33:22 +00:00
},
"dependencies": {
2019-12-20 22:54:05 +00:00
"buttercup": "^2.16.1",
"chalk": "^3.0.0",
"electron-updater": "^4.1.2",
2019-07-21 00:55:58 +00:00
"lodash": "^4.17.15",
2019-12-20 22:54:05 +00:00
"mal-scraper": "^2.6.6",
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",
"node-addon-api": "^1.7.1",
2019-12-20 22:54:05 +00:00
"nyaapi": "^2.1.1",
2019-10-22 20:44:11 +00:00
"pump": "^3.0.0",
2019-05-19 23:02:37 +00:00
"range-parser": "^1.2.1",
"rimraf": "^3.0.0",
2019-10-22 20:44:11 +00:00
"torrent-stream": "^1.2.0",
"velocity-animate": "^1.5.2",
2019-12-20 22:54:05 +00:00
"vue": "^2.6.11",
2019-09-19 16:24:59 +00:00
"vue-router": "^3.1.3",
2019-12-20 22:54:05 +00:00
"vuetify": "^2.1.15",
"vuex": "^3.1.2"
},
2017-04-15 14:16:14 +00:00
"devDependencies": {
2019-12-20 22:54:05 +00:00
"@vue/cli-plugin-babel": "^4.1.1",
"@vue/cli-plugin-eslint": "^4.1.1",
"@vue/cli-plugin-pwa": "^4.1.1",
"@vue/cli-plugin-unit-mocha": "^4.1.1",
"@vue/cli-service": "^4.1.1",
"@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",
"cmake-js": "^6.0.0",
2019-12-20 22:54:05 +00:00
"cross-env": "^6.0.3",
"electron": "^4.2.5",
2019-11-08 14:20:40 +00:00
"electron-builder": "^20.44.4",
2019-12-20 22:54:05 +00:00
"eslint": "^6.8.0",
"eslint-plugin-vue": "^6.0.1",
"lint-staged": "^9.5.0",
"material-design-icons-iconfont": "^5.0.1",
2019-12-20 22:54:05 +00:00
"mocha": "^6.2.2",
2019-09-19 16:24:59 +00:00
"mochawesome": "^4.1.0",
"native-ext-loader": "^2.3.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-12-20 22:54:05 +00:00
"sass": "^1.24.0",
"sass-loader": "^8.0.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",
2019-12-20 22:54:05 +00:00
"vue-cli-plugin-electron-builder": "^1.4.4",
"vue-cli-plugin-vuetify": "^2.0.2",
"vue-template-compiler": "^2.6.11",
"vuetify-loader": "^1.4.3"
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"
]
},
"cmake-js": {
"runtime": "electron",
2019-11-07 10:32:09 +00:00
"runtimeVersion": "4.2.5",
"arch": "x64"
2017-04-15 14:16:14 +00:00
}
2016-11-21 14:33:22 +00:00
}