-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.96 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
{
"name": "pkce-demos",
"version": "1.0.0",
"description": "A bunch of good pkce demos on multiple hybrid scenarios",
"main": "index.js",
"scripts": {
"build-cordova": "webpack -p --config webpack.cordova.config.js",
"build-electron": "webpack -p --config webpack.electron.config.js",
"build-chrome": "webpack -p --config webpack.chrome.config.js",
"watch-cordova": "webpack --watch --config webpack.cordova.config.js",
"watch-electron": "webpack --watch --config webpack.electron.config.js",
"watch-chrome": "webpack --watch --config webpack.chrome.config.js",
"watch-all": "npm-run-all --parallel watch-electron watch-cordova watch-chrome",
"prepare-cordova": "cd CordovaApp && phonegap prepare ios && phonegap prepare android",
"electron": "cd ElectronApp && electron .",
"android": "cd CordovaApp && phonegap run android",
"ios": "cd CordovaApp && phonegap run ios",
"apps": "npm-run-all --parallel electron ios"
},
"repository": {
"type": "git",
"url": "git+https://github.com/darkyen/pkce-demos.git"
},
"dependencies": {
"auth0-js": "^8.2.0",
"core-decorators": "^0.14.0",
"jwt-decode": "^2.1.0",
"npm-run-all": "^4.0.1",
"url-parse": "^1.1.7"
},
"devDependencies": {
"electron": "^1.4.15",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.16.0",
"expose-loader": "^0.7.1",
"phonegap": "6.4.2",
"uglify-js": "git://github.com/mishoo/UglifyJS2#harmony",
"webpack": "^1.14.0"
},
"keywords": [
"PKCE",
"Auth0",
"Chrome",
"Extension",
"Cordova"
],
"author": "Abhishek Hingnikar",
"license": "MIT",
"bugs": {
"url": "https://github.com/darkyen/pkce-demos/issues"
},
"homepage": "https://github.com/darkyen/pkce-demos#readme"
}