| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- {
- "name": "violentmonkey",
- "version": "2.12.7",
- "beta": 18,
- "scripts": {
- "dev": "gulp dev",
- "prebuild": "yarn ci",
- "build": "cross-env NODE_ENV=production gulp build",
- "build:selfHosted": "cross-env TARGET=selfHosted yarn build",
- "analyze": "cross-env RUN_ENV=analyze npm run build",
- "i18n": "gulp i18n",
- "copyI18n": "gulp copyI18n",
- "lint": "yarn lint:js && yarn 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'",
- "ci": "yarn lint && yarn test",
- "transform": "locky yarn yarn",
- "bump": "yarn ci && gulp bump --commit",
- "preversion": "yarn ci && gulp bump --reset",
- "update:selfHosted": "gulp updateVersions"
- },
- "description": "Violentmonkey",
- "devDependencies": {
- "@actions/core": "^1.2.6",
- "@babel/plugin-proposal-function-bind": "^7.8.3",
- "@babel/register": "^7.9.0",
- "@gera2ld/locky": "^0.1.0",
- "@gera2ld/plaid": "~1.5.6",
- "@gera2ld/plaid-vue": "~1.5.5",
- "@gera2ld/plaid-webpack": "~1.5.5",
- "@types/chrome": "0.0.101",
- "cross-env": "^7.0.2",
- "cross-spawn": "^7.0.1",
- "del": "^5.1.0",
- "fancy-log": "^1.3.2",
- "gulp": "^4.0.2",
- "gulp-filter": "^6.0.0",
- "gulp-plumber": "^1.1.0",
- "gulp-uglify": "^3.0.2",
- "husky": "^4.2.3",
- "js-yaml": "^3.13.1",
- "jsdom": "^16.2.1",
- "plugin-error": "^1.0.0",
- "sharp": "^0.26.2",
- "tape": "^4.13.2",
- "through2": "^3.0.1",
- "vinyl": "^2.1.0",
- "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": {
- "@babel/runtime": "^7.9.2",
- "codemirror": "^5.58.2",
- "codemirror-js-mixed": "^0.9.2",
- "core-js": "^3.6.4",
- "tldjs": "^2.3.1",
- "vue": "^2.6.11",
- "vueleton": "^1.0.4"
- },
- "engines": {
- "node": ">=10"
- },
- "husky": {
- "hooks": {
- "pre-commit": "yarn transform -t",
- "pre-push": "yarn lint"
- }
- }
- }
|