forked from auth0/auth0.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.4 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
{
"name": "wdi-auth0-js",
"version": "1.1.0",
"description": "Auth0 headless browser sdk",
"author": "Auth0",
"license": "MIT",
"module": "dist/auth0.min.esm.js",
"main": "dist/auth0.min.js",
"files": [
"src",
"plugins",
"build",
"dist"
],
"keywords": [
"auth0",
"auth",
"openid",
"authentication",
"jwt",
"browser"
],
"scripts": {
"clean": "rm -rf dist && rm -rf build",
"start": "npm run clean && rollup -c --watch",
"build": "npm run clean && rollup -c --prod && cp -rf dist build",
"test": "cross-env BABEL_ENV=test mocha --require @babel/register --require jsdom-global/register test/**/*.test.js --exit",
"test:coverage": "nyc --check-coverage -- npm test",
"test:integration": "cross-env BABEL_ENV=test mocha-parallel-tests --compilers @babel/register --compilers jsdom-global/register --max-parallel 2 integration/**/*.test.js",
"test:watch": "npm run test -- --watch --reporter min",
"test:es-check:es5": "es-check es5 'dist/!(*.esm)*.js'",
"test:es-check:es2015:module": "es-check es2015 --module 'dist/auth0.min.esm.js'",
"ci:test": "nyc npm run test -- --forbid-only --reporter mocha-junit-reporter",
"ci:coverage": "codecov",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"publish:cdn": "ccu --trace",
"release": "scripts/release.sh",
"jsdocs": "jsdoc --configure .jsdoc.json --verbose",
"precommit": "pretty-quick --staged"
},
"repository": {
"type": "git",
"url": "git://github.com/auth0/auth0.js"
},
"dependencies": {
"base64-js": "^1.3.0",
"idtoken-verifier": "^1.4.1",
"js-cookie": "^2.2.0",
"qs": "^6.7.0",
"superagent": "^3.8.3",
"url-join": "^4.0.1",
"winchan": "^0.2.2"
},
"devDependencies": {
"@auth0/component-cdn-uploader": "^2.2.2",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"babel-plugin-istanbul": "^5.1.4",
"codecov": "^3.5.0",
"cross-env": "^5.2.0",
"es-check": "^5.0.0",
"eslint": "^6.0.1",
"eslint-config-auth0-base": "^13.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-compat": "^3.3.0",
"eslint-plugin-import": "^2.18.0",
"expect.js": "^0.3.1",
"husky": "^3.0.0",
"istanbul": "^0.4.5",
"jsdoc": "3.6.3",
"jsdoc-to-markdown": "5.0.0",
"jsdom": "^15.1.1",
"jsdom-global": "^3.0.2",
"lint-staged": "^9.2.0",
"minami": "^1.2.3",
"mocha": "^6.1.4",
"mocha-junit-reporter": "^1.23.1",
"mocha-parallel-tests": "^2.2.1",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"proxyquire": "^2.1.1",
"rollup": "^1.17.0",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-license": "^0.12.1",
"rollup-plugin-livereload": "^1.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^5.1.1",
"selenium-webdriver": "^3.6.0",
"semver": "^6.2.0",
"sinon": "^7.3.2",
"yargs": "^14.0.0"
},
"ccu": {
"name": "auth0",
"cdn": "https://cdn.auth0.com",
"mainBundleFile": "auth0.min.js",
"bucket": "assets.us.auth0.com",
"localPath": "dist",
"digest": {
"hashes": [
"sha384"
],
"extensions": [
".js"
]
}
}
}