This repository has been archived by the owner on Apr 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
63 lines (63 loc) · 1.87 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
{
"name": "habrsanitizer",
"version": "1.0.0",
"description": "Home for the Chrome extension to sanitize Habr.com from graphomaniac authors. No external code, no tracking, 100% open source. [Free on Chrome Web Store](https://chrome.google.com/webstore/detail/habrosanitizer/gnbmgdpmmddeegooghfhjlchocllcgpc)",
"private": true,
"directories": {
"doc": "docs"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"eslint": "^7.17.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^7.1.0",
"html-webpack-plugin": "^4.5.0",
"husky": "^4.3.7",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0"
},
"scripts": {
"test": "echo \"No test specified\" && exit 0",
"webpack": "webpack",
"build:options": "webpack -c webpack.config.options.js",
"build:sanitizer": "webpack -c webpack.config.sanitizer.js",
"build": "npm run build:options && npm run build:sanitizer",
"prettier": "prettier src --write --config .prettierrc",
"lint": "eslint src/**/*.js",
"pack": "node pack.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Drag13/HabrSanitizer.git"
},
"keywords": [
"habr",
"habrahabr",
"chrome extension",
"firefox extension",
"user-script"
],
"author": "drag13",
"license": "ISC",
"bugs": {
"url": "https://github.com/Drag13/HabrSanitizer/issues"
},
"homepage": "https://github.com/Drag13/HabrSanitizer#readme",
"optionalDependencies": {
"adm-zip": "^0.5.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run lint"
}
}
}