-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.23 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.23 KB
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
{
"name": "missofis-request-interceptor",
"version": "1.1.0",
"description": "A browser extension to intercept HTTP requests",
"main": "background.js",
"scripts": {
"build": "node bin/build.js",
"bundle": "node bin/bundle.js",
"test": "jest --watchAll",
"devinfo": "node bin/includes/echo-developer-info.js",
"preversion": "jest --bail",
"version": "node bin/includes/update-manifest-version.js version=$npm_package_version && node bin/bundle.js",
"postversion": "git add package.json package-lock.json extension/manifest.json && git commit -m\"Updated to v$npm_package_version\" && node bin/includes/echo-developer-info.js && node bin/includes/echo-version-info.js name=$npm_package_name version=$npm_package_version"
},
"author": "Kemal Yılmaz",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"addons-linter": "^2.1.0",
"boxen": "^4.2.0",
"chalk": "^4.1.0",
"chokidar": "^3.4.2",
"deep-extend": "^0.6.0",
"eslint": "^7.8.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"fs-extra": "^9.0.1",
"jest": "^26.4.2",
"klaw": "^3.0.0",
"zip-dir": "^1.0.2"
}
}