forked from violentmonkey/violentmonkey
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.54 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.54 KB
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
{
"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.2.6",
"@actions/github": "^5.0.3",
"@babel/helper-plugin-utils": "^7.8.3",
"@babel/plugin-syntax-function-bind": "^7.14.5",
"@babel/register": "^7.15.3",
"@babel/runtime": "^7.15.3",
"@gera2ld/locky": "^0.1.1",
"@gera2ld/plaid": "~1.5.6",
"@gera2ld/plaid-vue": "~1.5.5",
"@gera2ld/plaid-webpack": "~1.5.5",
"@types/chrome": "^0",
"@types/firefox-webext-browser": "82.0.0",
"amo-upload": "^0.2.0",
"cross-env": "^7.0.2",
"cross-spawn": "^7.0.1",
"del": "^5.1.0",
"fancy-log": "^1.3.2",
"gulp": "^4.0.2",
"gulp-plumber": "^1.1.0",
"husky": "^4.2.3",
"js-yaml": "^4.1.0",
"jsdom": "^16.2.1",
"npm-run-all": "^4.1.5",
"plugin-error": "^1.0.0",
"sharp": "^0.26.2",
"tap-summary": "^4.0.0",
"tape": "^4.13.2",
"terser": "^5",
"terser-webpack-plugin": "^4",
"through2": "^3.0.1",
"vinyl": "^2.1.0",
"wrapper-webpack-plugin": "2.1.0"
},
"author": "Gerald <i@gerald.top>",
"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.3.17",
"codemirror": "5.63.3",
"codemirror-js-mixed": "^0.9.2",
"tldjs": "^2.3.1",
"vue": "^2.6.14",
"vue-template-compiler": "^2.6.14",
"vueleton": "^1.0.6"
},
"engines": {
"node": ">=10"
},
"husky": {
"hooks": {
"pre-commit": "yarn transform -t",
"pre-push": "run-p lint test"
}
},
"beta": 22
}