forked from auth0/auth0.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.47 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
{
"name": "auth0-js",
"version": "9.10.2",
"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"
],
"engine": {
"node": ">=6.9.0"
},
"scripts": {
"start": "rollup -c --watch",
"build": "rm -rf dist && rm -rf build && rollup -c --prod && cp -rf dist build",
"test": "cross-env BABEL_ENV=test mocha --require babel-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 --max-parallel 2 integration/**/*.test.js",
"test:watch": "npm run test -- --watch -R 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": "cross-env BABEL_ENV=test nyc npm run test -- --forbid-only -R mocha-multi --reporter-options spec=-,mocha-junit-reporter=-",
"ci:coverage": "codecov",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"publish:cdn": "ccu",
"release": "scripts/release.sh",
"jsdocs": "jsdoc --configure .jsdoc.json --verbose",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git://github.com/auth0/auth0.js"
},
"dependencies": {
"base64-js": "^1.2.0",
"idtoken-verifier": "^1.2.0",
"js-cookie": "^2.2.0",
"qs": "^6.4.0",
"superagent": "^3.8.2",
"url-join": "^4.0.0",
"winchan": "^0.2.1"
},
"devDependencies": {
"@auth0/component-cdn-uploader": "auth0/component-cdn-uploader#v2.2.1",
"babel-plugin-istanbul": "^4.1.6",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"codecov": "^3.0.2",
"cross-env": "^5.1.6",
"es-check": "^5.0.0",
"eslint": "^4.19.1",
"eslint-config-auth0-base": "^13.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-compat": "^2.3.0",
"eslint-plugin-import": "^2.12.0",
"expect.js": "^0.2.0",
"husky": "^0.13.3",
"istanbul": "^0.4.5",
"jsdoc": "^3.5.5",
"jsdoc-to-markdown": "4.0.1",
"lint-staged": "^3.4.2",
"minami": "^1.2.3",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.17.0",
"mocha-multi": "^1.0.1",
"mocha-parallel-tests": "^2.0.2",
"nyc": "^12.0.2",
"prettier": "^1.13.5",
"proxyquire": "^2.0.1",
"rollup": "^0.60.1",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-license": "^0.6.0",
"rollup-plugin-livereload": "^0.6.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-serve": "^0.4.2",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^1.0.1",
"selenium-webdriver": "^3.0.1",
"semver": "^5.5.0",
"sinon": "^1.17.6",
"yargs": "^11.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"
]
}
},
"lint-staged": {
"{src,test, plugins,integration}/**/*.js": [
"npm run lint",
"prettier --write --print-width 100 --single-quote",
"git add"
]
}
}