This repository was archived by the owner on Jul 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
84 lines (84 loc) · 2.56 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "violentmonkey-mx",
"version": "2.8.4",
"description": "Violentmonkey for Maxthon",
"scripts": {
"dev": "gulp dev",
"prebuild": "npm run lint && gulp clean",
"build": "cross-env NODE_ENV=production gulp 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 icons",
"transform": "node scripts/transform-lock"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.1",
"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.1",
"cross-env": "^5.1.0",
"css-loader": "^0.28.10",
"del": "^3.0.0",
"eslint": "^4.18.1",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^4.0.2",
"eslint-plugin-import": "^2.9.0",
"extract-text-webpack-plugin": "^3.0.2",
"fancy-log": "^1.3.2",
"friendly-errors-webpack-plugin": "^1.6.1",
"gulp": "^4.0.0",
"gulp-filter": "^5.0.0",
"gulp-plumber": "^1.1.0",
"gulp-uglify": "^3.0.0",
"html-webpack-plugin": "^2.29.0",
"husky": "^0.15.0-rc.13",
"plugin-error": "^1.0.1",
"postcss-loader": "^2.1.0",
"postcss-scss": "^1.0.4",
"precss": "^3.1.1",
"svg-sprite-loader": "^3.5.1",
"through2": "^2.0.3",
"vinyl": "^2.1.0",
"vue-loader": "^14.1.1",
"vue-style-loader": "^4.0.2",
"vue-template-compiler": "^2.5.3",
"webpack": "^3.11.0",
"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-mx.git"
},
"bugs": {
"url": "https://github.com/violentmonkey/violentmonkey-mx/issues"
},
"homepage": "https://github.com/violentmonkey/violentmonkey-mx",
"license": "MIT",
"dependencies": {
"@gera2ld/promise-lite": "^1.1.0",
"codemirror": "^5.37.0",
"core-js": "^2.5.6",
"tldjs": "^2.3.1",
"vue": "^2.5.16",
"vueleton": "^0.6.1"
},
"engines": {
"node": ">=8"
},
"husky": {
"hooks": {
"pre-commit": "yarn transform \"=yarn\"",
"pre-push": "yarn lint"
}
}
}