-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.67 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
84
85
{
"name": "password-leak-monitor",
"version": "2.1.8",
"description": "Browser extension that automatically monitors for passwords that are compromised",
"author": "J.R. Mathis (https://github.com/mathiscode)",
"homepage": "https://github.com/mathiscode/password-leak-monitor#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mathiscode/password-leak-monitor.git"
},
"bugs": {
"url": "https://github.com/mathiscode/password-leak-monitor/issues"
},
"scripts": {
"start": "cross-env NODE_ENV=development webpack -w",
"browser": "web-ext run --firefox=firefoxdeveloperedition --firefox-profile=super-dev --keep-profile-changes",
"develop": "npm-run-all --parallel start browser",
"build": "npm-run-all build:*",
"build:compile": "webpack",
"build:zip": "web-ext build",
"build:sourcezip": "bestzip web-ext-artifacts/source.zip extension src package.json web-ext-config.js webpack.config.js",
"test": "standard && web-ext lint",
"version:patch": "npm version patch && node src/utils/version-sync && git add . && git commit -m \"updated manifest version (patch)\"",
"version:minor": "npm version minor && node src/utils/version-sync && git add . && git commit -m \"updated manifest version (minor)\"",
"version:major": "npm version major && node src/utils/version-sync && git add . && git commit -m \"updated manifest version (major)\""
},
"keywords": [
"password",
"leak",
"breach",
"security",
"haveibeenpwned",
"browser",
"addon",
"firefox",
"chrome"
],
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@yarnpkg/pnpify": "^2.0.0-rc.22",
"babel-loader": "^8.0.6",
"bestzip": "^2.1.4",
"bootstrap": "^4.3.1",
"clean-webpack-plugin": "^3.0.0",
"core-js": "^3.1.4",
"cross-env": "^5.2.0",
"css-loader": "^3.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jquery": "^3.5.0",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.12.0",
"npm-run-all": "^4.1.5",
"pnp-webpack-plugin": "^1.6.4",
"popper.js": "^1.15.0",
"sass-loader": "^7.1.0",
"standard": "^12.0.1",
"url-loader": "^2.0.0",
"web-ext": "^3.0.0",
"webextension-polyfill": "^0.4.0",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4"
},
"resolutions": {
"lodash": "^4.17.13",
"mixin-deep": "^1.3.2",
"set-value": "^2.0.1"
},
"standard": {
"globals": [
"browser",
"chrome",
"window",
"fetch"
],
"ignore": [
"extension/dist/",
"node_modules/"
]
}
}