forked from auth0/auth0-cordova
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.53 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
{
"name": "@auth0/cordova",
"version": "0.2.0",
"description": "Auth0 integration for Cordova applications",
"main": "src/index.js",
"scripts": {
"build": "webpack -p --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": "^8.5.0",
"url-parse": "^1.1.8"
},
"devDependencies": {
"chai": "^3.5.0",
"codecov": "^2.1.0",
"eslint": "3.12.2",
"eslint-config-auth0-base": "6.0.0",
"eslint-plugin-compat": "^1.0.0",
"eslint-plugin-import": "1.16.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.4.3",
"jsdoc-to-markdown": "^2.0.1",
"minami": "^1.2.3",
"mocha": "^3.3.0",
"mocha-junit-reporter": "^1.13.0",
"mocha-multi": "^0.11.0",
"webpack": "^2.4.1"
}
}