forked from violentmonkey/violentmonkey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.32 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
{
"name": "violentmonkey",
"version": "2.8.7",
"scripts": {
"dev": "gulp watch",
"prebuild": "npm run lint && gulp clean",
"build": "NODE_ENV=production gulp build",
"build:min": "MINIFY=true npm run 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",
"pretest": "NODE_ENV=test webpack --config scripts/webpack.test.conf.js",
"test": "node dist/test",
"prepush": "npm run lint"
},
"description": "Violentmonkey",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babili-webpack-plugin": "^0.1.2",
"css-loader": "^0.28.7",
"del": "^3.0.0",
"eslint": "^4.5.0",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-html": "^3.2.0",
"eslint-plugin-import": "^2.7.0",
"extract-text-webpack-plugin": "^3.0.0",
"friendly-errors-webpack-plugin": "^1.6.1",
"gulp": "^3.9.1",
"gulp-filter": "^5.0.1",
"gulp-svg-sprite": "^1.3.7",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.7",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"js-yaml": "^3.9.1",
"postcss-loader": "^2.0.6",
"postcss-scss": "^1.0.2",
"precss": "^2.0.0",
"svgo": "^0.7.2",
"tape": "^4.8.0",
"through2": "^2.0.3",
"vue-loader": "^13.0.4",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.4.2",
"webpack": "^3.5.5",
"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.29.0",
"core-js": "^2.5.0",
"vue": "^2.4.2",
"vueleton": "^0.4.0"
}
}