forked from rossmoody/svg-gobbler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.93 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
{
"name": "svg-gobbler",
"version": "2.5.0",
"description": "SVG Gobbler is a simple browser extension that highlights any available SVG content in your current window and lets you download it.",
"scripts": {
"start": "webpack --config webpack.js --watch",
"lint": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rossmoody/svg-gobbler.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint"
},
"eslintConfig": {
"globals": {
"window": true
},
"env": {
"browser": true,
"jest": true
},
"extends": [
"airbnb-base",
"prettier"
],
"plugins": [
"prettier"
],
"rules": {
"no-console": "off",
"no-restricted-syntax": "off",
"no-use-before-define": "off",
"no-unused-expressions": "off",
"prettier/prettier": [
"error",
{
"singleQuote": true,
"semi": false
}
]
}
},
"dependencies": {
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"babel-loader": "^8.1.0",
"brfs": "^2.0.2",
"css-loader": "^3.6.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"file-saver": "^2.0.2",
"husky": "^4.2.5",
"jszip": "3.2.2",
"lint-staged": "^10.2.11",
"live-server": "^1.2.1",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prettier": "^2.0.5",
"sass-loader": "^9.0.1",
"svgo": "^1.3.2",
"terser-webpack-plugin": "^3.0.3",
"transform-loader": "^0.2.4",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-merge": "^4.2.2"
}
}