forked from violentmonkey/violentmonkey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.89 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
{
"name": "violentmonkey",
"version": "2.12.3",
"scripts": {
"dev": "gulp dev",
"prebuild": "yarn lint",
"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": "plaid svgo",
"test": "cross-env BABEL_ENV=test tape -r ./test/mock/register 'test/**/*.test.js'",
"transform": "node scripts/transform-lock"
},
"description": "Violentmonkey",
"devDependencies": {
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/register": "^7.7.0",
"@gera2ld/plaid": "~1.5.3",
"@gera2ld/plaid-vue": "~1.5.2",
"@gera2ld/plaid-webpack": "~1.5.2",
"@types/chrome": "latest",
"cross-env": "^6.0.3",
"del": "^5.1.0",
"fancy-log": "^1.3.2",
"gulp": "^4.0.2",
"gulp-filter": "^6.0.0",
"gulp-plumber": "^1.1.0",
"gulp-uglify": "^3.0.2",
"husky": "^3.1.0",
"js-yaml": "^3.13.1",
"jsdom": "^15.2.1",
"plugin-error": "^1.0.0",
"tape": "^4.11.0",
"through2": "^3.0.1",
"vinyl": "^2.1.0",
"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.7.2",
"codemirror": "^5.49.2",
"core-js": "^3.4.1",
"tldjs": "^2.3.1",
"vue": "^2.6.10",
"vueleton": "^1.0.3"
},
"engines": {
"node": ">=10"
},
"husky": {
"hooks": {
"pre-commit": "yarn transform \"=yarn\"",
"pre-push": "yarn lint"
}
}
}