forked from homerchen19/github-file-icons
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.5 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
{
"name": "github-file-icon",
"description": "A Chrome Extension which gives different filetypes different icons to GitHub, GitLab, gitea and gogs.",
"license": "MIT",
"author": "xxhomey19",
"homepage": "https://github.com/xxhomey19/github-file-icon#readme",
"repository": {
"type": "git",
"url": "https://github.com/xxhomey19/github-file-icon/tree/master"
},
"bugs": {
"url": "https://github.com/xxhomey19/github-file-icon/issues"
},
"version": "1.0.0",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config webpack.config.js --display-error-details --progress --colors",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"start": "cross-env NODE_ENV=development webpack --config ./webpack.config.js --watch",
"zip": "npm run build && zip -r build/File_Icon_For_GitHub_And_GitLab_$npm_package_version.zip build"
},
"dependencies": {
"dom-loaded": "^1.2.0",
"file-icons-js": "^1.0.3",
"is-mobile": "^2.1.0",
"select-dom": "^5.1.0",
"webext-domain-permission-toggle": "^1.0.0",
"webext-dynamic-content-scripts": "^6.0.3-0",
"webext-options-sync": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/runtime": "^7.5.5",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.4",
"cross-env": "^5.2.0",
"css-loader": "^3.2.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^4.2.0",
"husky": "^3.0.2",
"lint-staged": "^9.2.1",
"prettier": "^1.18.2",
"prettier-package-json": "^2.1.0",
"style-loader": "^1.0.0",
"terser-webpack-plugin": "^1.4.1",
"webpack": "^4.39.1",
"webpack-chrome-extension-reloader": "^1.3.0",
"webpack-cli": "^3.3.6",
"write-file-webpack-plugin": "^4.5.1"
},
"keywords": [
"Chrome Extension",
"GitHub",
"icon"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"package.json": [
"prettier-package-json --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
}
}