| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- {
- "name": "violentmonkey",
- "version": "2.9.4",
- "scripts": {
- "dev": "gulp dev",
- "prebuild": "yarn lint && gulp clean",
- "build": "cross-env NODE_ENV=production gulp build",
- "build:firefox": "cross-env TARGET=firefox yarn build",
- "analyze": "webpack --profile --json --config scripts/webpack.conf.js | webpack-bundle-size-analyzer",
- "analyze:json": "webpack --profile --json --config scripts/webpack.conf.js > stats.json",
- "i18n": "gulp i18n",
- "lint": "eslint --ext .js,.vue .",
- "svgo": "svgo --config .svgo.yml src/resources/icons",
- "pretest": "cross-env NODE_ENV=test webpack --config scripts/webpack.test.conf.js",
- "test": "node dist/test",
- "transform": "node scripts/transform-lock"
- },
- "description": "Violentmonkey",
- "devDependencies": {
- "babel-core": "^6.26.0",
- "babel-eslint": "^8.2.2",
- "babel-loader": "^7.1.2",
- "babel-minify-webpack-plugin": "^0.3.0",
- "babel-plugin-transform-export-extensions": "^6.22.0",
- "babel-plugin-transform-runtime": "^6.23.0",
- "babel-preset-env": "^1.6.0",
- "cross-env": "^5.0.5",
- "css-loader": "^0.28.10",
- "del": "^3.0.0",
- "eslint": "^4.18.1",
- "eslint-config-airbnb-base": "^12.0.0",
- "eslint-import-resolver-webpack": "^0.8.3",
- "eslint-plugin-html": "^4.0.1",
- "eslint-plugin-import": "^2.9.0",
- "extract-text-webpack-plugin": "^3.0.0",
- "fancy-log": "^1.3.2",
- "friendly-errors-webpack-plugin": "^1.6.1",
- "gulp": "^4.0.0",
- "gulp-filter": "^5.0.1",
- "gulp-plumber": "^1.1.0",
- "gulp-uglify": "^3.0.0",
- "html-webpack-plugin": "^2.30.1",
- "husky": "^0.15.0-rc.13",
- "js-yaml": "^3.9.1",
- "plugin-error": "^1.0.0",
- "postcss-loader": "^2.0.6",
- "postcss-scss": "1.0.4",
- "precss": "^3.1.1",
- "svg-sprite-loader": "^3.5.1",
- "svgo": "^1.0.3",
- "tape": "^4.9.0",
- "through2": "^2.0.3",
- "vinyl": "^2.1.0",
- "vue-loader": "^14.1.1",
- "vue-style-loader": "^4.0.2",
- "vue-template-compiler": "^2.4.2",
- "webpack": "^3.5.6",
- "webpack-bundle-size-analyzer": "^2.7.0",
- "wrapper-webpack-plugin": "^1.0.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": {
- "codemirror": "^5.35.0",
- "core-js": "^2.5.1",
- "tldjs": "^2.3.1",
- "vue": "^2.4.2",
- "vueleton": "^0.6.1"
- },
- "engines": {
- "node": ">=8"
- },
- "husky": {
- "hooks": {
- "pre-commit": "yarn transform \"=yarn\"",
- "pre-push": "yarn lint"
- }
- }
- }
|