Skip to content

Commit 56bf96c

Browse files
committed
update license
1 parent 99b0576 commit 56bf96c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+405
-117
lines changed

dist/IdentityModel.js

Lines changed: 239 additions & 78 deletions
Large diffs are not rendered by default.

package.json

Lines changed: 46 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,47 @@
11
{
2-
"name": "oidc-client",
3-
"version": "1.0.0",
4-
"description": "OpenID Connect (OIDC) client library",
5-
"main": "src/_index.js",
6-
"scripts": {
7-
"start": "node sample/server.js",
8-
"build": "webpack --config webpack.config.js",
9-
"test": "mocha --compilers js:babel-register test/unit/*.spec.js"
10-
},
11-
"repository": {
12-
"type": "git",
13-
"url": "https://github.com/IdentityModel/oidc-client-js.git"
14-
},
15-
"author": "",
16-
"license": "Apache-2.0",
17-
"bugs": {
18-
"url": "https://github.com/IdentityModel/oidc-client-js/issues"
19-
},
20-
"homepage": "https://github.com/IdentityModel/oidc-client-js",
21-
"devDependencies": {
22-
"babel-core": "^6.7.2",
23-
"babel-loader": "^6.2.4",
24-
"babel-plugin-add-module-exports": "^0.1.2",
25-
"babel-preset-es2015": "^6.6.0",
26-
"babel-register": "^6.7.2",
27-
"chai": "^3.5.0",
28-
"express": "^4.13.4",
29-
"mocha": "^2.4.5",
30-
"open": "0.0.5",
31-
"webpack": "^1.12.14"
32-
},
33-
"dependencies": {
34-
"babel-polyfill": "^6.7.4",
35-
"jsrsasign": "^5.0.7"
36-
}
37-
}
2+
"name": "oidc-client",
3+
"version": "1.0.0",
4+
"description": "OpenID Connect (OIDC) & OAuth2 client library",
5+
"main": "src/_index.js",
6+
"scripts": {
7+
"start": "node sample/server.js",
8+
"build": "webpack --config webpack.config.js",
9+
"test": "mocha --compilers js:babel-register test/unit/*.spec.js"
10+
},
11+
"repository": {
12+
"type": "git",
13+
"url": "https://github.com/IdentityModel/oidc-client-js.git"
14+
},
15+
"author": "Brock Allen & Dominick Baier",
16+
"contributors": [
17+
{
18+
"name": "Brock Allen",
19+
"email": "brockallen@gmail.com"
20+
},
21+
{
22+
"name": "Dominick Baier",
23+
"email": "dbaier@leastprivilege.com"
24+
}
25+
],
26+
"license": "Apache-2.0",
27+
"bugs": {
28+
"url": "https://github.com/IdentityModel/oidc-client-js/issues"
29+
},
30+
"homepage": "https://github.com/IdentityModel/oidc-client-js",
31+
"devDependencies": {
32+
"babel-core": "^6.7.2",
33+
"babel-loader": "^6.2.4",
34+
"babel-plugin-add-module-exports": "^0.1.2",
35+
"babel-preset-es2015": "^6.6.0",
36+
"babel-register": "^6.7.2",
37+
"chai": "^3.5.0",
38+
"express": "^4.13.4",
39+
"mocha": "^2.4.5",
40+
"open": "0.0.5",
41+
"webpack": "^1.12.14"
42+
},
43+
"dependencies": {
44+
"babel-polyfill": "^6.7.4",
45+
"jsrsasign": "^5.0.7"
46+
}
47+
}

sample/oidc.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
2+
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
3+
14
var jsrsasign = require('jsrsasign');
25
var rsaKey = jsrsasign.KEYUTIL.generateKeypair("RSA", 1024);
36
var e = jsrsasign.hextob64u(rsaKey.pubKeyObj.e.toString(16));

sample/public/app.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
2+
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
3+
14
///////////////////////////////
25
// UI event handlers
36
///////////////////////////////

sample/server.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
2+
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
3+
14
var open = require('open');
25
var path = require('path');
36

src/InMemoryWebStorage.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
2+
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
3+
14
import Log from './Log';
25

36
export default class InMemoryWebStorage{

src/JsonService.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
2+
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
3+
14
import Log from './Log';
25
import Window from './Window';
36

src/JwtUtil.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
2+
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
3+
14
import { jws, KEYUTIL as KeyUtil, X509, crypto, hextob64u } from 'jsrsasign';
25
import Log from './Log';
36

src/Log.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
2+
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
3+
14
let nopLogger = {
25
info(){},
36
warn(){},

src/MetadataService.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
2+
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
3+
14
import JsonService from './JsonService';
25
import Log from './Log';
36

0 commit comments

Comments
 (0)