forked from auth0/auth0-spa-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 4.39 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"author": "Auth0",
"name": "@q42philips/auth0-spa-js",
"description": "Auth0 SDK for Single Page Applications using Authorization Code Grant Flow with PKCE",
"license": "MIT",
"version": "2.0.8-alpha.0",
"main": "dist/lib/auth0-spa-js.cjs.js",
"types": "dist/typings/index.d.ts",
"module": "dist/auth0-spa-js.production.esm.js",
"scripts": {
"dev": "rimraf dist && rollup -c --watch",
"start": "npm run dev",
"docs": "typedoc --options ./typedoc.js src",
"build": "rimraf dist && rollup -m -c --environment NODE_ENV:production && npm run test:es-check",
"build:stats": "rimraf dist && rollup -m -c --environment NODE_ENV:production --environment WITH_STATS:true && npm run test:es-check && open bundle-stats/index.html",
"lint:security": "eslint ./src --ext ts --no-eslintrc --config ./.eslintrc.security",
"test": "jest --coverage --silent",
"test:watch": "jest --coverage --watch",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand",
"test:open:integration": "cypress open",
"test:watch:integration": "concurrently --raw npm:dev 'npm:test:open:integration'",
"test:es-check": "npm run test:es-check:es2017 && npm run test:es-check:es2017:module",
"test:es-check:es2017": "es-check es2017 'dist/auth0-spa-js.production.js'",
"test:es-check:es2017:module": "es-check es2017 'dist/auth0-spa-js.production.esm.js' --module ",
"test:integration:server": "npm run dev",
"test:integration:tests": "wait-on http://localhost:3000/ && cypress run",
"test:integration": "concurrently --raw --kill-others --success first npm:test:integration:server npm:test:integration:tests",
"serve:coverage": "serve coverage/lcov-report -n",
"serve:stats": "serve bundle-stats -n",
"print-bundle-size": "node ./scripts/print-bundle-size.mjs",
"prepack": "npm run build && node ./scripts/prepack",
"publish:cdn": "ccu --trace"
},
"devDependencies": {
"@auth0/component-cdn-uploader": "github:auth0/component-cdn-uploader#v2.2.2",
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@rollup/plugin-replace": "^4.0.0",
"@types/cypress": "^1.1.3",
"@types/jest": "^28.1.7",
"@typescript-eslint/eslint-plugin-tslint": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"babel-jest": "^28.1.3",
"browser-tabs-lock": "^1.2.15",
"browserstack-cypress-cli": "1.8.1",
"cli-table": "^0.3.6",
"concurrently": "^7.3.0",
"cypress": "7.2.0",
"es-check": "^7.0.1",
"es-cookie": "~1.3.2",
"eslint": "^8.22.0",
"eslint-plugin-security": "^1.5.0",
"gzip-size": "^7.0.0",
"husky": "^7.0.4",
"idtoken-verifier": "^2.2.2",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-fetch-mock": "^3.0.3",
"jest-junit": "^14.0.0",
"jest-localstorage-mock": "^2.4.22",
"jsonwebtoken": "^9.0.0",
"node-fetch": "^3.2.10",
"oidc-provider": "^7.14.0",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.2",
"qss": "^2.0.3",
"rimraf": "^3.0.2",
"rollup": "^2.78.0",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-dev": "^1.1.3",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"rollup-plugin-visualizer": "^5.7.1",
"rollup-plugin-web-worker-loader": "^1.6.1",
"serve": "^14.0.1",
"ts-jest": "^28.0.8",
"tslib": "^2.4.0",
"typedoc": "^0.23.10",
"typescript": "^4.7.4",
"wait-on": "^6.0.0"
},
"files": [
"src",
"dist"
],
"repository": {
"type": "git",
"url": "git://github.com/Q42Philips/auth0-spa-js.git"
},
"bugs": {
"url": "https://github.com/Q42Philips/auth0-spa-js/pulls"
},
"homepage": "https://github.com/Q42Philips/auth0-spa-js#readme",
"keywords": [
"auth0",
"login",
"Authorization Code Grant Flow",
"PKCE",
"Single Page Application authentication",
"SPA authentication"
],
"ccu": {
"name": "auth0-spa-js",
"cdn": "https://cdn.auth0.com",
"mainBundleFile": "auth0-spa-js.production.js",
"bucket": "assets.us.auth0.com",
"localPath": "dist",
"digest": {
"hashes": [
"sha384"
],
"extensions": [
".js"
]
}
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}