forked from violentmonkey/violentmonkey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.2 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
{
"name": "violentmonkey",
"version": "2.10.5",
"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": "cross-env RUN_ENV=analyze npm run build",
"i18n": "gulp i18n",
"lint": "yarn lint:js && yarn lint:yml",
"lint:js": "eslint --ext .js,.vue .",
"lint:yml": "gulp check",
"svgo": "svgo --config .svgo.yml src/resources/svg",
"test": "cross-env BABEL_ENV=test tape -r ./test/mock/register 'test/**/*.test.js'",
"transform": "node scripts/transform-lock"
},
"description": "Violentmonkey",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-function-sent": "^7.2.0",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-minify-webpack-plugin": "^0.3.0",
"babel-plugin-module-resolver": "^3.2.0",
"cross-env": "^5.0.5",
"css-loader": "^2.1.0",
"del": "^3.0.0",
"eslint": "^5.14.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-import-resolver-babel-module": "^5.0.1",
"eslint-import-resolver-webpack": "^0.11.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-vue": "^5.2.2",
"fancy-log": "^1.3.2",
"gulp": "^4.0.0",
"gulp-filter": "^5.0.1",
"gulp-plumber": "^1.1.0",
"gulp-uglify": "^3.0.0",
"html-webpack-plugin": "^4.0.0-beta.5",
"husky": "^1.3.1",
"js-yaml": "^3.12.2",
"mini-css-extract-plugin": "^0.5.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"plugin-error": "^1.0.0",
"postcss-loader": "^3.0.0",
"postcss-scss": "2.0.0",
"precss": "^4.0.0",
"svg-sprite-loader": "^4.1.2",
"svgo": "^1.2.0",
"tape": "^4.10.1",
"through2": "^3.0.1",
"url-loader": "^1.1.2",
"vinyl": "^2.1.0",
"vue-loader": "^15.7.0",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.7",
"webpack": "^4.29.6",
"webpack-bundle-analyzer": "^3.0.4",
"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.3.4",
"codemirror": "^5.44.0",
"core-js": "^2.6.5",
"tldjs": "^2.3.1",
"vue": "^2.6.7",
"vueleton": "^0.7.1"
},
"engines": {
"node": ">=8"
},
"husky": {
"hooks": {
"pre-commit": "yarn transform \"=yarn\"",
"pre-push": "yarn lint"
}
}
}