forked from auth0/auth0-cordova
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.66 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
{
"name": "@auth0/cordova",
"version": "0.4.5",
"description": "Auth0 integration for Cordova applications",
"main": "src/index.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"lint": "eslint ./src",
"jsdocs": "LIB_VERSION=$(node -pe \"require('./package.json').version\");jsdoc --configure .jsdoc.json --verbose;rm -Rf docs/;mv out/@auth0/cordova/$LIB_VERSION/ docs",
"ci:test": "istanbul cover _mocha --report lcovonly -R test/**/* -- -R mocha-multi --reporter-options spec=-,mocha-junit-reporter=-",
"test": "mocha test/**/*.tests.js",
"ci:coverage": "codecov"
},
"engine": {
"node": ">=6.9.0"
},
"repository": "git+https://github.com/auth0/auth0-cordova.git",
"keywords": [
"auth0",
"cordova",
"phonegap",
"hybrid",
"ionic",
"oauth",
"auth",
"pkce",
"mobile"
],
"author": "Auth0",
"license": "MIT",
"bugs": {
"url": "https://github.com/auth0/auth0-cordova/issues"
},
"homepage": "https://github.com/auth0/auth0-cordova#readme",
"dependencies": {
"auth0-js": "^9.18.1",
"url-parse": "^1.5.10"
},
"devDependencies": {
"chai": "^3.5.0",
"codecov": "^3.6.1",
"eslint": "4.18.2",
"eslint-config-auth0-base": "6.0.0",
"eslint-plugin-compat": "^1.0.0",
"eslint-plugin-import": "1.16.0",
"handlebars": "^4.3.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.6.3",
"jsdoc-to-markdown": "^5.0.2",
"marked": "^4.0.10",
"minami": "^1.2.3",
"mocha": "^6.2.1",
"mocha-junit-reporter": "^1.23.1",
"mocha-multi": "^1.1.3",
"webpack": "^4.46.0",
"webpack-cli": "^4.8.0"
},
"prettier": {
"singleQuote": true
}
}