forked from auth0/auth0.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.92 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
{
"name": "auth0-js",
"version": "9.6.1",
"description": "Auth0 headless browser sdk",
"author": "Auth0",
"license": "MIT",
"main": "src/index.js",
"browser": "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": "mocha test/**/*.test.js test/setup.js",
"test:integration": "mocha-parallel-tests --max-parallel 2 integration/**/*.test.js",
"test:watch": "mocha --watch -R min test/**/*.test.js test/setup.js",
"ci:test": "istanbul cover _mocha --report lcovonly -R test/**/* test/setup.js -- -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": "^1.1.0",
"winchan": "^0.2.0"
},
"devDependencies": {
"codecov": "^1.0.1",
"component-cdn-uploader": "auth0/component-cdn-uploader#v1.3.0",
"eslint": "3.12.2",
"eslint-config-auth0-base": "6.0.0",
"eslint-config-prettier": "^2.1.0",
"eslint-plugin-compat": "^1.0.0",
"eslint-plugin-import": "1.16.0",
"expect.js": "^0.2.0",
"husky": "^0.13.3",
"istanbul": "^0.4.5",
"jsdoc": "^3.4.3",
"jsdoc-to-markdown": "^2.0.1",
"lint-staged": "^3.4.2",
"minami": "^1.2.3",
"mocha": "^3.2.0",
"mocha-junit-reporter": "^1.13.0",
"mocha-multi": "^0.10.0",
"mocha-parallel-tests": "^1.2.5",
"prettier": "^1.3.1",
"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-uglify": "^4.0.0",
"selenium-webdriver": "^3.0.1",
"semver": "^5.3.0",
"sinon": "^1.17.6",
"yargs": "^11.0.0"
},
"cdn-component": {
"name": "auth0",
"cdn": "https://cdn.auth0.com",
"mainBundleFile": "auth0.min.js",
"bucket": "assets.us.auth0.com",
"localPath": "dist"
},
"lint-staged": {
"{src,test, plugins,integration}/**/*.js": [
"npm run lint",
"prettier --write --print-width 100 --single-quote",
"git add"
]
}
}