forked from violentmonkey/violentmonkey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.6 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "violentmonkey",
"description": "Violentmonkey",
"version": "2.29.0",
"scripts": {
"prepare": "husky install",
"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 . --cache",
"lint:yml": "gulp check",
"test": "cross-env BABEL_ENV=test TEST=test jest test",
"ci": "run-p lint test",
"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/core": "^7.22.10",
"@babel/eslint-parser": "^7.22.15",
"@babel/helper-plugin-utils": "^7.18.6",
"@babel/plugin-syntax-function-bind": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-typescript": "^7.22.5",
"@types/chrome": "^0.0.208",
"@types/firefox-webext-browser": "94.0.1",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"@violentmonkey/types": "0.2.0",
"@vue/compiler-sfc": "^3.4.38",
"@vue/eslint-config-typescript": "^13.0.0",
"amo-upload": "^0.5.5",
"autoprefixer": "^10.4.15",
"babel-jest": "^29.6.2",
"babel-loader": "^9.1.3",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-transform-modern-regexp": "^0.0.6",
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.3",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^7.0.0",
"del": "^6.1.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-vue": "^9.27.0",
"fancy-log": "^2.0.0",
"gulp": "^4.0.2",
"gulp-plumber": "^1.1.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^8.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.7.6",
"npm-run-all": "^4.1.5",
"plugin-error": "^2.0.0",
"postcss": "^8.4.28",
"postcss-calc": "^9.0.1",
"postcss-import": "^15.1.0",
"postcss-loader": "^7.3.3",
"postcss-nested": "^6.0.1",
"postcss-scss": "^4.0.4",
"postcss-simple-vars": "^6.0.3",
"prettier": "^3.0.2",
"sharp": "^0.32.6",
"style-loader": "^3.3.3",
"svg-sprite-loader": "^6.0.11",
"terser-webpack-plugin": "^5.3.9",
"through2": "^4.0.2",
"typescript": "^5.1.6",
"vinyl": "^2.2.1",
"vue-loader": "^17.4.2",
"vue-tsc": "^2.0.29",
"webpack": "^5.95.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4"
},
"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.4",
"codemirror": "^5.65.10",
"tldts": "^6.0.14",
"vue": "^3.4.38",
"vueleton": "^2.0.2"
},
"engines": {
"node": ">=20"
},
"jest": {
"setupFilesAfterEnv": [
"./test/mock/index.js"
],
"testEnvironment": "./test/mock/env.js"
},
"beta": 1
}