| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- {
- "name": "violentmonkey",
- "description": "Violentmonkey",
- "version": "2.13.0",
- "scripts": {
- "dev": "gulp dev",
- "prebuild": "yarn ci",
- "build": "cross-env NODE_ENV=production gulp build",
- "build:selfHosted": "cross-env TARGET=selfHosted BETA=1 run-s build",
- "analyze": "cross-env RUN_ENV=analyze run-s build",
- "i18n": "gulp i18n",
- "copyI18n": "gulp copyI18n",
- "lint": "run-s lint:js lint:yml",
- "lint:js": "eslint --ext .js,.vue .",
- "lint:yml": "gulp check",
- "svgo": "plaid svgo",
- "test": "cross-env BABEL_ENV=test tape -r ./test/mock/register \"test/**/*.test.js\" | tap-summary",
- "ci": "run-s lint test",
- "transform": "locky yarn yarn",
- "bumpVersion": "gulp bump",
- "bump": "run-s ci \"bumpVersion --commit\"",
- "preversion": "run-s ci \"bumpVersion --reset\""
- },
- "devDependencies": {
- "@actions/core": "^1.9.0",
- "@actions/github": "^5.0.3",
- "@babel/helper-plugin-utils": "^7.18.6",
- "@babel/plugin-syntax-function-bind": "^7.18.6",
- "@babel/register": "^7.18.6",
- "@babel/runtime": "^7.18.6",
- "@gera2ld/locky": "^0.1.1",
- "@gera2ld/plaid": "~1.5.6",
- "@gera2ld/plaid-vue": "~1.6.5",
- "@gera2ld/plaid-webpack": "~1.5.5",
- "@types/chrome": "^0.0.191",
- "@types/firefox-webext-browser": "94.0.1",
- "amo-upload": "^0.2.0",
- "cross-env": "^7.0.3",
- "cross-spawn": "^7.0.3",
- "del": "^6.1.1",
- "eslint-plugin-vue": "^9.3.0",
- "fancy-log": "^2.0.0",
- "gulp": "^4.0.2",
- "gulp-plumber": "^1.1.0",
- "husky": "^4.2.3",
- "js-yaml": "^4.1.0",
- "jsdom": "^20.0.0",
- "npm-run-all": "^4.1.5",
- "plugin-error": "^2.0.0",
- "sharp": "^0.31.0",
- "tap-summary": "^4.0.0",
- "tape": "^5.5.3",
- "terser": "^5.14.1",
- "terser-webpack-plugin": "^4",
- "through2": "^4.0.2",
- "vue-eslint-parser": "^9.0.3",
- "vinyl": "^2.2.1",
- "wrapper-webpack-plugin": "2.1.0"
- },
- "author": "Gerald <[email protected]>",
- "repository": {
- "type": "git",
- "url": "https://github.com/violentmonkey/violentmonkey.git"
- },
- "bugs": {
- "url": "https://github.com/violentmonkey/violentmonkey/issues"
- },
- "homepage": "https://github.com/violentmonkey/violentmonkey",
- "license": "MIT",
- "dependencies": {
- "@violentmonkey/shortcut": "^1.2.6",
- "@zip.js/zip.js": "^2.4.26",
- "codemirror": "^5.65.6",
- "codemirror-js-mixed": "^0.9.2",
- "tldjs": "^2.3.1",
- "vue": "^2.7.8",
- "vue-loader": "^15.10.0",
- "vue-template-babel-compiler": "^2.0.0",
- "vue-template-compiler": "^2.7.8",
- "vueleton": "^1.0.6"
- },
- "engines": {
- "node": ">=10"
- },
- "husky": {
- "hooks": {
- "pre-commit": "yarn transform -t",
- "pre-push": "run-p lint test"
- }
- },
- "beta": 26
- }
|