forked from pjhul/auth0-web-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.06 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
{
"name": "auth0-web-extension",
"author": "Paul Hultgren <@pjhul> (https://pjhul.com)",
"version": "0.0.10-beta.4",
"description": "A javascript library to perform authentication in a web extension with Auth0",
"main": "dist/auth0-web-extension.production.cjs.js",
"types": "dist/types/index.d.ts",
"module": "dist/auth0-web-extension.production.esm.js",
"scripts": {
"build": "rimraf dist && rollup -m -c --environment NODE_ENV:production",
"dev": "rimraf dist && rollup -mcw",
"test": "jest --coverage --silent",
"test:watch": "jest --coverage --watch --silent=false",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pjhul/auth0-web-extension.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/pjhul/auth0-web-extension/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://github.com/pjhul/auth0-web-extension#readme",
"files": [
"src",
"dist"
],
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"keywords": [
"auth0",
"extension",
"chrome extension",
"authentication",
"web extension",
"auth"
],
"packageManager": "[email protected]",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^3.0.1",
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^27.4.1",
"@types/jest-environment-puppeteer": "^5.0.0",
"@types/webextension-polyfill": "^0.8.2",
"husky": "^7.0.4",
"idtoken-verifier": "^2.2.2",
"jest": "^27.5.1",
"jest-puppeteer": "^6.1.0",
"jsonwebtoken": "^8.5.1",
"lint-staged": "^12.3.2",
"pem": "^1.14.6",
"prettier": "^2.5.1",
"puppeteer-core": "^13.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.66.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.1.3",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
},
"dependencies": {
"fast-text-encoding": "^1.0.3",
"webextension-polyfill": "^0.8.0"
}
}