An Oauth client handler, from abstract
parent
2c3d81b950
commit
3f153eb93a
File diff suppressed because it is too large
Load Diff
@ -1,26 +1,26 @@
|
|||||||
{
|
{
|
||||||
"name": "yavsc",
|
"name": "yavsc",
|
||||||
"version": "1.0.1",
|
"version": "1.0.1",
|
||||||
"description": "Yet Another Very Small Company",
|
"description": "Yet Another Very Small Company",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "Git",
|
"type": "Git",
|
||||||
"url": "https://github.com/pazof/yavsc"
|
"url": "https://github.com/pazof/yavsc"
|
||||||
},
|
},
|
||||||
"license": "GPL-3.0",
|
"license": "GPL-3.0",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"grunt": "^1.0.2",
|
"grunt": "^1.0.2",
|
||||||
"gulp": "^3.9.1",
|
"gulp": "^3.9.1",
|
||||||
"gulp-clean": "^0.4.0",
|
"gulp-clean": "^0.4.0",
|
||||||
"gulp-concat": "2.6.1",
|
"gulp-concat": "2.6.1",
|
||||||
"gulp-cssmin": "^0.2.0",
|
"gulp-cssmin": "^0.2.0",
|
||||||
"gulp-dnx-tasks": "^1.0.0-beta7",
|
"gulp-dnx-tasks": "^1.0.0-beta7",
|
||||||
"gulp-shell": "^0.6.5",
|
"gulp-shell": "^0.6.5",
|
||||||
"gulp-uglify": "^3.0.0",
|
"gulp-uglify": "^3.0.0",
|
||||||
"rimraf": "^2.6.2"
|
"rimraf": "^2.6.2"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"ansi-to-html": "^0.6.4",
|
"ansi-to-html": "^0.6.4",
|
||||||
"braintree-web": "^3.31.0",
|
"braintree-web": "^3.31.0",
|
||||||
"paypal-permissions-sdk": "^1.0.10"
|
"paypal-permissions-sdk": "^1.0.10"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,32 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Runtime.Serialization;
|
|
||||||
|
|
||||||
namespace cli.Authentication
|
|
||||||
{
|
|
||||||
[Serializable]
|
|
||||||
internal class AuthException : Exception
|
|
||||||
{
|
|
||||||
private object p;
|
|
||||||
|
|
||||||
public AuthException()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
public AuthException(object p)
|
|
||||||
{
|
|
||||||
this.p = p;
|
|
||||||
}
|
|
||||||
|
|
||||||
public AuthException(string message) : base(message)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
public AuthException(string message, Exception innerException) : base(message, innerException)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
protected AuthException(SerializationInfo info, StreamingContext context) : base(info, context)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -0,0 +1,20 @@
|
|||||||
|
0 info it worked if it ends with ok
|
||||||
|
1 verbose cli [ 'C:\\Programs\\nodejs\\node.exe',
|
||||||
|
1 verbose cli 'C:\\Programs\\nodejs\\node_modules\\npm\\bin\\npm-cli.js',
|
||||||
|
1 verbose cli 'install' ]
|
||||||
|
2 info using npm@1.4.9
|
||||||
|
3 info using node@v8.11.3
|
||||||
|
4 error install Couldn't read dependencies
|
||||||
|
5 error package.json ENOENT: no such file or directory, open 'C:\Users\paul\Documents\GitHub\yavsc\test\package.json'
|
||||||
|
5 error package.json This is most likely not a problem with npm itself.
|
||||||
|
5 error package.json npm can't find a package.json file in your current directory.
|
||||||
|
6 error System Windows_NT 6.1.7601
|
||||||
|
7 error command "C:\\Programs\\nodejs\\node.exe" "C:\\Programs\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "install"
|
||||||
|
8 error cwd C:\Users\paul\Documents\GitHub\yavsc\test
|
||||||
|
9 error node -v v8.11.3
|
||||||
|
10 error npm -v 1.4.9
|
||||||
|
11 error path C:\Users\paul\Documents\GitHub\yavsc\test\package.json
|
||||||
|
12 error syscall open
|
||||||
|
13 error code ENOPACKAGEJSON
|
||||||
|
14 error errno -4058
|
||||||
|
15 verbose exit [ -4058, true ]
|
||||||
Loading…
Reference in New Issue