forked from eight04/webext-launch-web-auth-flow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1014 Bytes
/
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
{
"name": "webext-launch-web-auth-flow",
"version": "0.1.2",
"description": "A launchWebAuthFlow polyfill using browser popup",
"author": "eight04 <[email protected]>",
"license": "MIT",
"scripts": {
"test": "eslint **/*.{js,ts} --cache --ignore-pattern dist",
"preversion": "npm test",
"version": "npm run build && git add .",
"build": "rollup -c",
"postversion": "git push --follow-tags && npm publish"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@rollup/plugin-babel": "^5.2.0",
"@types/webextension-polyfill": "^0.9.1",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"camelcase": "^6.0.0",
"eslint": "^7.32.0",
"rollup": "^2.25.0",
"rollup-plugin-cjs-es": "^1.0.1",
"rollup-plugin-terser": "^7.0.0"
},
"repository": "eight04/webext-launch-web-auth-flow",
"files": [
"dist",
"**/*.ts"
],
"main": "index.js",
"types": "index.d.ts"
}