forked from auth0/auth0-spa-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 4.08 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
{
"author": "Auth0",
"name": "@auth0/auth0-spa-js",
"description": "Auth0 SDK for Single Page Applications using Authorization Code Grant Flow with PKCE",
"license": "MIT",
"version": "1.10.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 --module commonjs",
"build": "rimraf dist && rollup -m -c --environment NODE_ENV:production && npm run test:es-check",
"build:stats": "npm run build -- --environment WITH_STATS:true && open stats.html",
"lint:security": "eslint ./src --ext ts --no-eslintrc --config ./.eslintrc.security",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"test:watch:integration": "concurrently --raw npm:dev 'cypress open'",
"test:es-check": "npm run test:es-check:es5 && npm run test:es-check:es2015:module",
"test:es-check:es5": "es-check es5 'dist/auth0-spa-js.production.js'",
"test:es-check:es2015:module": "es-check es2015 --module 'dist/auth0-spa-js.production.esm.js'",
"test:integration:server": "cp static/index.html dist/index.html && serve ./dist/ -p 3000 -n",
"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",
"print-bundle-size": "node ./scripts/print-bundle-size",
"prepack": "npm run build && npm run test && node ./scripts/prepack",
"release": "node ./scripts/release",
"release:clean": "node ./scripts/cleanup",
"publish:cdn": "ccu --trace"
},
"devDependencies": {
"@auth0/component-cdn-uploader": "github:auth0/component-cdn-uploader#v2.2.2",
"@rollup/plugin-replace": "^2.3.1",
"@types/cypress": "^1.1.3",
"@types/jest": "^24.9.1",
"@typescript-eslint/eslint-plugin-tslint": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"cli-table": "^0.3.1",
"concurrently": "^5.1.0",
"cypress": "^4.3.0",
"es-check": "^5.1.0",
"eslint": "^6.8.0",
"gzip-size": "^5.1.1",
"husky": "^4.2.3",
"idtoken-verifier": "^2.0.2",
"jest": "^24.9.0",
"jest-localstorage-mock": "^2.4.0",
"jsonwebtoken": "^8.5.1",
"pem": "^1.14.4",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1",
"qss": "^2.0.3",
"rimraf": "^3.0.2",
"rollup": "^2.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-livereload": "^1.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-sourcemaps": "^0.5.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.0",
"rollup-plugin-visualizer": "^4.0.3",
"rollup-plugin-web-worker-loader": "^1.1.3",
"serve": "^11.3.0",
"ts-jest": "^24.3.0",
"tslint": "^6.1.1",
"tslint-config-security": "^1.16.0",
"typedoc": "^0.17.4",
"typescript": "^3.8.3",
"wait-on": "^4.0.1"
},
"dependencies": {
"abortcontroller-polyfill": "^1.4.0",
"browser-tabs-lock": "^1.2.8",
"core-js": "^3.6.4",
"es-cookie": "^1.3.2",
"fast-text-encoding": "^1.0.1",
"promise-polyfill": "^8.1.3",
"unfetch": "^4.1.0"
},
"files": [
"src",
"dist"
],
"repository": {
"type": "git",
"url": "git://github.com/auth0/auth0-spa-js.git"
},
"bugs": {
"url": "https://github.com/auth0/auth0-spa-js/issues"
},
"homepage": "https://github.com/auth0/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"
}
}
}