Merge pull request #1 from jspm/master

Update to latest changes
This commit is contained in:
Dwayne Charrington
2016-02-13 18:49:59 +10:00
85 changed files with 877 additions and 100 deletions
@@ -0,0 +1,15 @@
{
"main": "toastr",
"format": "global",
"dependencies": {
"jquery": "github:components/jquery",
"css": "github:systemjs/plugin-css"
},
"files": ["toastr.js", "toastr.css", "build"],
"shim": {
"toastr": {
"deps": ["jquery", "./toastr.css!"],
"exports": "toastr"
}
}
}
@@ -0,0 +1,15 @@
{
"main": "toastr",
"format": "global",
"dependencies": {
"jquery": "github:components/jquery",
"css": "github:systemjs/plugin-css"
},
"files": ["toastr.js", "build"],
"shim": {
"toastr": {
"deps": ["jquery", "./build/toastr.css!"],
"exports": "toastr"
}
}
}
@@ -1,7 +1,4 @@
{
"files": [
"dist"
],
"main": "dist/js/materialize",
"shim": {
"dist/js/materialize": {
@@ -0,0 +1,16 @@
{
"main": "js/materialize",
"shim": {
"js/materialize": {
"deps": [
"jquery",
"../css/materialize.css!"
],
"exports": "$"
}
},
"dependencies": {
"jquery": "github:components/jquery",
"css": "github:systemjs/plugin-css"
}
}
@@ -0,0 +1,17 @@
{
"main": "angular-toastr",
"shim": {
"angular-toastr": {
"deps": [
"angular",
"./angular-toastr.css!"
]
}
},
"registry": "jspm",
"dependencies": {
"angular": "^1.3.0",
"css": "*"
}
}
@@ -0,0 +1,11 @@
{
"main": "js/tether",
"directories": {
"lib": "dist"
},
"shim": {
"js/tether": {
"exports": "Tether"
}
}
}
@@ -1,3 +1,10 @@
{
"format": "global"
"format": "global",
"shim": {
"xlsx": {
"deps": [
"./jszip"
]
}
}
}
@@ -0,0 +1,7 @@
{
"shim": {
"js/bootstrap-material-datetimepicker": {
"deps": ["bootstrap-material-datetimepicker/css/bootstrap-material-datetimepicker.css!", "jquery", "moment"]
}
}
}
@@ -0,0 +1,15 @@
{
"format": "global",
"registry": "jspm",
"dependencies": {
"angular-translate": "*"
},
"files": [
"src/translate-once.js"
],
"shim": {
"src/translate-once": [
"angular-translate"
]
}
}
@@ -0,0 +1,13 @@
{
"registry": "jspm",
"format": "global",
"main": "angular-translate-handler-log",
"dependencies": {
"angular-translate": "^2.7.2"
},
"shim": {
"angular-translate-handler-log": [
"angular-translate"
]
}
}
@@ -0,0 +1,19 @@
{
"main": "angular-translate-interpolation-messageformat",
"registry": "jspm",
"format": "global",
"shim": {
"angular-translate-interpolation-messageformat": {
"deps": [
"angular",
"angular-translate",
"messageformat"
]
}
},
"dependencies": {
"angular-translate": "~2.8.1",
"angular": "^1.3.15",
"messageformat": "~0.1.6"
}
}
@@ -0,0 +1,16 @@
{
"dependencies": {
"css": "*",
"angular": "^1.3"
},
"main": "dist/select",
"registry": "jspm",
"shim": {
"select": {
"deps": [
"angular",
"./dist/select.css!"
]
}
}
}
@@ -0,0 +1,12 @@
{
"main": "angular-resource",
"shim": {
"angular-resource": {
"deps": ["angular"]
}
},
"registry": "jspm",
"dependencies": {
"angular": "^1.4.8"
}
}
@@ -0,0 +1,9 @@
{
"format": "global",
"main": "build/auth0-lock",
"shim": {
"build/auth0-lock.min": {
"exports": "Auth0Lock"
}
}
}
@@ -1,12 +1,15 @@
{
"main": "build/hotkeys",
"registry": "jspm",
"main": "build/hotkeys",
"dependencies": {
"angular": "^1.2.0"
},
"shim": {
"build/hotkeys": {
"deps": ["angular"]
"deps": [
"angular",
"./hotkeys.css!"
]
}
}
}
}
@@ -0,0 +1,12 @@
{
"registry": "jspm",
"format": "global",
"dependencies": {
"angular": "^1.2.0"
},
"shim": {
"release/ct-ui-router-extras": [
"angular"
]
}
}
@@ -0,0 +1,16 @@
{
"main": "js/jquery.cloudinary",
"map": {
"jquery.ui.widget": "./js/jquery.ui.widget"
},
"shim": {
"js/jquery.cloudinary": {
"exports": "$",
"deps": [
"./jquery.ui.widget",
"./jquery.iframe-transport",
"./jquery.fileupload"
]
}
}
}
@@ -3,22 +3,5 @@
"registry": "jspm",
"dependencies": {
"jquery": "*"
},
"shim": {
"jquery-ui": {
"deps": ["jquery"]
},
"ui/widget": {
"deps": ["jquery"]
},
"ui/datepicker": {
"deps": ["jquery"]
},
"ui/draggable": {
"deps": ["jquery"]
},
"ui/sortable": {
"deps": ["jquery"]
}
}
}
@@ -0,0 +1,3 @@
{
"main": "dist/hls.js"
}
@@ -0,0 +1,3 @@
{
"main": "dist/hls.js"
}
@@ -0,0 +1,3 @@
{
"main": "dist/hls.js"
}
@@ -0,0 +1,3 @@
{
"main": "dist/hls.js"
}
@@ -0,0 +1,12 @@
{
"main": "dist/angular-stomp",
"dependencies": {
"angular": "^1.2.0",
"stomp-websocket": "~2.3.0"
},
"shim": {
"dist/angular-stomp": {
"deps": [ "angular", "stomp-websocket" ]
}
}
}
@@ -0,0 +1,12 @@
{
"main": "dist/angular-stomp",
"dependencies": {
"angular": "^1.2.0",
"stomp-websocket": "~2.3.0"
},
"shim": {
"dist/angular-stomp": {
"deps": [ "angular", "stomp-websocket" ]
}
}
}
@@ -0,0 +1,8 @@
{
"main": "css/skeleton.css!",
"registry": "jspm",
"dependencies": {
"css": "0.1",
"normalize.css": "3.0.3"
}
}
@@ -3,6 +3,7 @@
"main": "js/ionic-angular",
"shim": {
"js/ionic-angular": {
"exports": "ionic",
"deps": [
"../css/ionic.css!",
"./ionic",
@@ -20,4 +21,4 @@
"angular-sanitize": "^1.3.6",
"angular-ui-router": "0.2.13"
}
}
}
@@ -0,0 +1,9 @@
{
"main": false,
"files": [
"css/**.css",
"fonts/*",
"less/*",
"scss/*"
]
}
@@ -0,0 +1,4 @@
{
"main": "dist/flow.js",
"registry": "jspm"
}
@@ -0,0 +1,16 @@
{
"main": "dist/ng-flow",
"shim": {
"dist/ng-flow": {
"deps": [
"angular",
"flow.js"
]
}
},
"registry": "jspm",
"dependencies": {
"angular": "^1.4.7",
"flow.js": "^2.9.0"
}
}
@@ -10,7 +10,10 @@
},
"shim": {
"dist/textAngular": {
"deps": ["rangy", "rangy/rangy-selectionsaverestore", "./textAngularSetup", "./textAngular.css!"]
"deps": ["angular", "rangy", "rangy/rangy-selectionsaverestore", "./textAngularSetup", "./textAngular.css!"]
},
"dist/textAngular-sanitize": {
"deps": [ "angular" ]
}
}
}
@@ -0,0 +1,5 @@
{
"directories": {
"lib": "src/uncompressed"
}
}
@@ -0,0 +1,12 @@
{
"main": "angular-toasty",
"shim": {
"dist/angular-toasty": {
"deps": ["angular"]
}
},
"registry": "jspm",
"dependencies": {
"angular": "^1.4.8"
}
}
@@ -0,0 +1,8 @@
{
"registry": "jspm",
"shim": {
"dist/leaflet.groupedlayercontrol.min": [
"leaflet"
]
}
}
@@ -0,0 +1,8 @@
{
"format": "global",
"shim": {
"traceur-runtime": {
"exports": "$traceurRuntime"
}
}
}
@@ -0,0 +1,8 @@
{
"format": "global",
"shim": {
"traceur-runtime": {
"exports": "$traceurRuntime"
}
}
}
@@ -0,0 +1,8 @@
{
"format": "global",
"shim": {
"traceur": {
"exports": "traceur"
}
}
}
@@ -0,0 +1,8 @@
{
"format": "global",
"shim": {
"traceur": {
"exports": "traceur"
}
}
}
@@ -0,0 +1,14 @@
{
"dependencies": {
"angular": "^1.4.0"
},
"main": "src/angular-sortable-view",
"registry": "jspm",
"shim": {
"src/angular-sortable-view": {
"deps": [
"angular"
]
}
}
}
@@ -0,0 +1,25 @@
{
"main": "js/fileinput",
"format": "global",
"dependencies": {
"jquery": "github:components/jquery",
"bootstrap": "github:twbs/bootstrap",
"css": "github:systemjs/plugin-css",
"canvas-to-blob":"npm:canvas-to-blob"
},
"files": [
"js/fileinput.js",
"js/fileinput.min.js",
"css/fileinput.css",
"css/fileinput.min.css",
"img/loading.gif",
"img/loading-sm.gif"
],
"registry": "jspm",
"shim": {
"js/fileinput": {
"deps": ["jquery", "bootstrap", "canvas-to-blob", "../css/fileinput.css!"],
"exports": "$"
}
}
}
@@ -1,13 +1,13 @@
{
"main":"src/js/kendo.ui.core",
"format": "global",
"shim": {
"src/js/kendo.ui.core": {
"deps": ["jquery"],
"exports": "kendo"
"main": "src/js/kendo.core",
"format": "amd",
"shim": {
"src/js/kendo.core": {
"deps": ["jquery"],
"exports": "kendo"
}
},
"dependencies": {
"jquery": "github:components/jquery"
}
},
"dependencies": {
"jquery": "github:components/jquery"
}
}
@@ -0,0 +1,16 @@
{
"files": [
"dist/angular-nvd3.js"
],
"registry": "jspm",
"format": "global",
"dependencies": {
"angular": "^1",
"nvd3": "npm:nvd3@^1.7.1"
},
"shim": {
"dist/angular-nvd3": [
"angular"
]
}
}
@@ -0,0 +1,18 @@
{
"main": "dist/js/lightbox.js",
"format": "global",
"registry": "jspm",
"dependencies": {
"jquery": "*",
"css": "*"
},
"shim": {
"dist/js/lightbox": {
"deps": [
"jquery",
"../css/lightbox.css!"
],
"exports": "$"
}
}
}
@@ -0,0 +1,7 @@
{
"main": "ElementQueries.js",
"format": "global",
"directories": {
"lib": "src"
}
}
@@ -0,0 +1,14 @@
{
"dependencies": {
"angular": "^1.4.0"
},
"main": "dist/ngScrollSpy",
"registry": "jspm",
"shim": {
"dist/ngScrollSpy": {
"deps": [
"angular"
]
}
}
}
@@ -6,7 +6,7 @@
"registry": "jspm",
"dependencies": {
"angular": "^1.2.0",
"lodash": "*"
"lodash": "^3.10.1"
},
"shim": {
"restangular": {
@@ -0,0 +1,12 @@
{
"main": "browser/nunjucks-slim",
"format": "cjs",
"shim": {
"browser/nunjucks-slim": {
"format": "global"
},
"browser/nunjucks": {
"format": "global"
}
}
}
@@ -0,0 +1,12 @@
{
"main": "ol",
"dependencies": {
"css": "jspm:css@*"
},
"shim": {
"ol": {
"deps": ["./ol.css!"]
}
}
}
@@ -0,0 +1,10 @@
{
"main": "dist/css/titip.css!",
"shim": {
"titip": {
"deps": [
"css"
]
}
}
}
@@ -0,0 +1,12 @@
{
"dependencies": {
"leaflet": "^0.7.7"
},
"meta": {
"dist/angular-leaflet-directive.js": {
"globals": {
"L": "leaflet"
}
}
}
}
@@ -0,0 +1,14 @@
{
"main": "angular-nicescroll",
"registry": "jspm",
"dependencies": {
"angular": "jspm:angular@^1.4.8",
"jquery": "jspm:jquery@^2.1.4",
"jquery.nicescroll": "github:inuyaksa/jquery.nicescroll@3.6.6"
},
"shim":{
"angular-nicescroll": {
"deps": ["angular", "jquery.nicescroll", "jquery"]
}
}
}
@@ -9,5 +9,16 @@
"dependencies": {
"jquery": "github:components/jquery"
},
"files": ["css", "fonts", "js"]
}
"files": ["dist", "fonts", "js", "css", "less", "grunt", "LICENSE"],
"systemjs": {
"main": "dist/js/bootstrap.js",
"modules": {
"dist/js/bootstrap.js": {
"deps": [
"jquery"
],
"exports": "$"
}
}
}
}
@@ -0,0 +1,23 @@
{
"main": "js/bootstrap",
"files": null,
"ignore": [
"dist/js/npm"
],
"directories": {
"lib": "dist"
},
"shim": {
"js/bootstrap": {
"deps": [
"jquery",
"tether"
],
"exports": "$"
}
},
"dependencies": {
"jquery": "github:components/jquery",
"tether": "github:HubSpot/tether@^1.1.1"
}
}
@@ -0,0 +1,13 @@
{
"main": "dist/foundation",
"files": ["dist", "assets", "js", "scss"],
"shim": {
"dist/foundation": {
"deps": "jQuery",
"exports": "Foundation"
}
},
"dependencies": {
"jQuery": "github:components/jquery"
}
}
@@ -0,0 +1,3 @@
{
"format": "cjs"
}
@@ -1,7 +0,0 @@
{
"dependencies": {
"reflect-metadata": "^0.1.0",
"zone.js": "^0.5.1",
"rx": "2.5.1"
}
}
@@ -0,0 +1,10 @@
{
"format": "global",
"jspmNodeConversion": false,
"main": "angular",
"meta": {
"angular.js": {
"exports": "angular"
}
}
}
@@ -1,4 +1,7 @@
{
"main": false,
"dependencies": {}
"dependencies": {},
"optionalDependencies": {
"core-js": "^1.2.0"
}
}
@@ -0,0 +1,7 @@
{
"shim":
{
"js/browser/bluebird": true,
"js/browser/bluebird.min": true
}
}
@@ -1,9 +1,9 @@
{
"dependencies": {
"readable-stream": "^2.0.2",
"pako": "~0.2.0"
},
"map": {
"_stream_transform": "readable-stream/transform"
},
"dependencies": {
"readable-stream": "^1.0.27-1",
"pako": "~0.2.0"
}
}
+1
View File
@@ -0,0 +1 @@
{}
+3
View File
@@ -0,0 +1,3 @@
{
"main": "dist/cjs/can"
}
+3
View File
@@ -0,0 +1,3 @@
{
"dependencies": {}
}
@@ -0,0 +1,14 @@
{
"main": "js/foundation/foundation",
"format": "global",
"shim": {
"js/foundation/foundation.*": "./foundation",
"js/foundation/foundation": {
"deps": "jquery",
"exports": "Foundation"
}
},
"dependencies": {
"jquery": "github:components/jquery"
}
}
@@ -0,0 +1,9 @@
{
"format": "global",
"main": "javascript/diff_match_patch_uncompressed.js",
"shim": {
"javascript/diff_match_patch_uncompressed": {
"exports": "diff_match_patch"
}
}
}
+1 -1
View File
@@ -1,3 +1,3 @@
{
"ignore": ["test.js"]
}
}
@@ -0,0 +1,3 @@
{
"main": "jquery.form.js"
}
@@ -0,0 +1,3 @@
{
"format": "global"
}
+3
View File
@@ -0,0 +1,3 @@
{
"format": "amd"
}
@@ -0,0 +1,3 @@
{
"format": "global"
}
@@ -0,0 +1,12 @@
{
"dependencies": {
"language-subtag-registry": "~0.3.2",
"systemjs-json": "systemjs/plugin-json"
},
"map": {
"language-subtag-registry/data/json/index": "language-subtag-registry/data/json/index.json!systemjs-json",
"language-subtag-registry/data/json/macrolanguage": "language-subtag-registry/data/json/macrolanguage.json!systemjs-json",
"language-subtag-registry/data/json/meta": "language-subtag-registry/data/json/meta.json!systemjs-json",
"language-subtag-registry/data/json/registry": "language-subtag-registry/data/json/registry.json!systemjs-json"
}
}
@@ -0,0 +1,3 @@
{
"format": "global"
}
@@ -0,0 +1,13 @@
{
"registry": "npm",
"format": "global",
"files": [
"messageformat.js",
"locale/*.js"
],
"shim": {
"messageformat": {
"exports": "MessageFormat"
}
}
}
+13
View File
@@ -0,0 +1,13 @@
{
"dependencies": {
"babel-runtime": "^5.8.20"
},
"devDependencies": {},
"files": [
"dist/",
"lib/browser",
"index.js",
"LICENSE",
"PATENTS"
]
}
+7
View File
@@ -0,0 +1,7 @@
{
"dependencies": {
"css": "*"
},
"main": "build/pure-min.css!",
"registry": "jspm"
}
+24
View File
@@ -0,0 +1,24 @@
{
"dependencies": {
"fbjs": "^0.6.1"
},
"format": "cjs",
"meta": {
"*": {
"globals": {
"process": "process"
}
}
},
"map": {
"fbjs/lib/ExecutionEnvironment.js": {
"production": "@empty"
},
"./lib/ReactDefaultPerf.js": {
"production": "@empty"
},
"./lib/ReactTestUtils.js": {
"production": "@empty"
}
}
}
@@ -2,6 +2,7 @@
"map": {
"stream": "stream-browserify/index"
},
"systemjs": {},
"dependencies": {
"core-util-is": "~1.0.0",
"isarray": "0.0.1",
@@ -2,6 +2,7 @@
"map": {
"stream": "stream-browserify/index"
},
"systemjs": {},
"dependencies": {
"core-util-is": "~1.0.0",
"inherits": "~2.0.1",
+5
View File
@@ -0,0 +1,5 @@
{
"map": {
"./lib/parsers/hiredis": "@empty"
}
}
+7
View File
@@ -0,0 +1,7 @@
{
"dependencies": {
"when":">=3.4.4",
"request":">=2.55.0",
"browser-request":"0.3.x"
}
}
@@ -0,0 +1,12 @@
{
"browser": {},
"map": {
"buffer": "@empty",
"child_process": "@empty",
"fs": "@empty",
"os": "@empty",
"path": "@empty",
"process": "@empty",
"readline": "@empty"
}
}
@@ -0,0 +1,12 @@
{
"browser": {},
"map": {
"buffer": "@empty",
"child_process": "@empty",
"fs": "@empty",
"os": "@empty",
"path": "@empty",
"process": "@empty",
"readline": "@empty"
}
}
@@ -0,0 +1,12 @@
{
"browser": {},
"map": {
"buffer": "@empty",
"child_process": "@empty",
"fs": "@empty",
"os": "@empty",
"path": "@empty",
"process": "@empty",
"readline": "@empty"
}
}
+2 -2
View File
@@ -18,8 +18,8 @@
"colors": "^1.0.3",
"commander": "^2.7.1",
"glob": "^5.0.3",
"jspm-github": "git://github.com/jspm/github",
"jspm-npm": "git://github.com/jspm/npm",
"jspm-github": "^0.13.0",
"jspm-npm": "^0.26.0",
"mout": "^0.11.0",
"q": "^1.2.0"
}
+116 -44
View File
@@ -1,26 +1,33 @@
{
"audio": "github:ozsay/plugin-audio",
"coffee": "github:forresto/system-coffee",
"css": "github:systemjs/plugin-css",
"ember-hbs": "github:n-fuse/plugin-ember-hbs",
"font": "github:guybedford/system-font",
"image": "github:systemjs/plugin-image",
"jade": "github:johnsoftek/plugin-jade",
"json": "github:systemjs/plugin-json",
"jst": "github:podio/plugin-jst",
"md": "github:guybedford/system-md",
"raw": "github:matthewbauer/plugin-raw",
"text": "github:systemjs/plugin-text",
"jade": "github:johnsoftek/plugin-jade",
"jsx": "github:floatdrop/plugin-jsx",
"less": "github:aaike/jspm-less-plugin",
"md": "github:guybedford/system-md",
"plugin-babel": "npm:systemjs-plugin-babel",
"plugin-traceur": "npm:systemjs-plugin-traceur",
"plugin-typescript": "github:frankwallis/plugin-typescript",
"raw": "github:matthewbauer/plugin-raw",
"sass": "github:mobilexag/plugin-sass",
"text": "github:systemjs/plugin-text",
"ts": "github:frankwallis/plugin-typescript",
"sass": "github:screendriver/plugin-sass",
"tsv": "github:wpf500/plugin-tsv",
"ace": "github:ajaxorg/ace-builds",
"adam": "npm:adam",
"alt": "npm:alt",
"amplify": "github:mikehostetler/amplify",
"angular": "github:angular/bower-angular",
"angular2": "npm:angular2",
"angular2-bootstrap": "npm:angular2-bootstrap",
"angular2-google-maps": "npm:angular2-google-maps",
"angular.CQRS": "github:KABA-CCEAC/angular.CQRS",
"angular-agility": "github:AngularAgility/AngularAgility",
"angular-animate": "github:angular/bower-angular-animate",
@@ -39,6 +46,7 @@
"angular-formly": "github:formly-js/angular-formly",
"angular-google-maps": "github:angular-ui/angular-google-maps",
"angular-http-auth": "github:witoldsz/angular-http-auth",
"angular-leaflet-directive": "github:tombatossals/angular-leaflet-directive",
"angular-loading-bar": "github:chieffancypants/angular-loading-bar",
"angular-local-storage": "npm:angular-local-storage",
"angular-locker": "github:tymondesigns/angular-locker",
@@ -46,6 +54,7 @@
"angular-messages": "github:angular/bower-angular-messages",
"angular-mocks": "github:angular/bower-angular-mocks",
"angular-next": "github:robianmcd/angular-next",
"angular-nvd3": "github:krispo/angular-nvd3",
"angular-recursion": "github:marklagendijk/angular-recursion",
"angular-resource": "github:angular/bower-angular-resource",
"angular-restmod": "github:platanus/angular-restmod",
@@ -59,12 +68,17 @@
"angular-smart-table": "github:lorenzofox3/Smart-Table",
"angular-strap": "github:mgcrea/angular-strap",
"angular-subscribe": "github:kasperlewau/angular-subscribe",
"angular-toastr": "github:Foxandxss/angular-toastr",
"angular-touch": "github:angular/bower-angular-touch",
"angular-translate": "github:angular-translate/bower-angular-translate",
"angular-translate-handler-log": "github:angular-translate/bower-angular-translate-handler-log",
"angular-translate-interpolation-messageformat": "github:angular-translate/bower-angular-translate-interpolation-messageformat@2.8.1",
"angular-translate-loader-partial": "github:angular-translate/bower-angular-translate-loader-partial",
"angular-translate-loader-static-files": "github:angular-translate/bower-angular-translate-loader-static-files",
"angular-translate-once": "github:ajwhite/angular-translate-once",
"angular-translate-storage-cookie": "github:angular-translate/bower-angular-translate-storage-cookie",
"angular-translate-storage-local": "github:angular-translate/bower-angular-translate-storage-local",
"angular-tree-control": "github:wix/angular-tree-control",
"angular-ui-grid": "github:angular-ui/bower-ui-grid",
"angular-ui-layout": "github:angular-ui/ui-layout",
"angular-ui-router": "github:angular-ui/ui-router",
@@ -85,48 +99,60 @@
"army-knife": "npm:army-knife",
"array-sugar": "github:capaj/array-sugar",
"assert": "github:jspm/nodelibs-assert",
"aurelia-async": "github:jdanyow/aurelia-async",
"aurelia-animator-css": "github:aurelia/animator-css",
"aurelia-pal": "npm:aurelia-pal",
"aurelia-pal-browser": "npm:aurelia-pal-browser",
"aurelia-pal-nodejs": "npm:aurelia-pal-nodejs",
"aurelia-async": "npm:aurelia-async",
"aurelia-animator-css": "npm:aurelia-animator-css",
"aurelia-animator-velocity": "npm:aurelia-animator-velocity",
"aurelia-auth":"github:paulvanbladel/aurelia-auth",
"aurelia-binding": "github:aurelia/binding",
"aurelia-breeze": "github:jdanyow/aurelia-breeze",
"aurelia-bootstrapper": "github:aurelia/bootstrapper",
"aurelia-binding": "npm:aurelia-binding",
"aurelia-breeze": "npm:aurelia-breeze",
"aurelia-bootstrapper": "npm:aurelia-bootstrapper",
"aurelia-bs-modal": "github:pwkad/aurelia-bs-modal",
"aurelia-computed": "github:jdanyow/aurelia-computed",
"aurelia-cmdrjs": "github:cmdrjs/aurelia-cmdrjs",
"aurelia-computed": "npm:aurelia-computed",
"aurelia-configuration": "github:vheissu/aurelia-configuration",
"aurelia-dependency-injection": "github:aurelia/dependency-injection",
"aurelia-dialog": "github:aurelia/dialog",
"aurelia-event-aggregator": "github:aurelia/event-aggregator",
"aurelia-fetch-client": "github:aurelia/fetch-client",
"aurelia-dependency-injection": "npm:aurelia-dependency-injection",
"aurelia-dialog": "npm:aurelia-dialog",
"aurelia-event-aggregator": "npm:aurelia-event-aggregator",
"aurelia-fetch-client": "npm:aurelia-fetch-client",
"aurelia-firebase": "github:pulsarblow/aurelia-firebase",
"aurelia-flux": "github:tfrydrychewicz/aurelia-flux",
"aurelia-framework": "github:aurelia/framework",
"aurelia-history": "github:aurelia/history",
"aurelia-history-browser": "github:aurelia/history-browser",
"aurelia-framework": "npm:aurelia-framework",
"aurelia-google-analytics": "github:miguelzakharia/aurelia-google-analytics",
"aurelia-history": "npm:aurelia-history",
"aurelia-history-browser": "npm:aurelia-history-browser",
"aurelia-html-template-element": "github:aurelia/html-template-element",
"aurelia-http-client": "github:aurelia/http-client",
"aurelia-i18n": "github:aurelia/i18n",
"aurelia-loader": "github:aurelia/loader",
"aurelia-loader-default": "github:aurelia/loader-default",
"aurelia-logging": "github:aurelia/logging",
"aurelia-logging-console": "github:aurelia/logging-console",
"aurelia-metadata": "github:aurelia/metadata",
"aurelia-http-client": "npm:aurelia-http-client",
"aurelia-i18n": "npm:aurelia-i18n",
"aurelia-kendoui-bridge": "npm:aurelia-kendoui-bridge",
"aurelia-loader": "npm:aurelia-loader",
"aurelia-loader-default": "npm:aurelia-loader-default",
"aurelia-logging": "npm:aurelia-logging",
"aurelia-logging-console": "npm:aurelia-logging-console",
"aurelia-metadata": "npm:aurelia-metadata",
"aurelia-modal": "github:vheissu/aurelia-modal",
"aurelia-path": "github:aurelia/path",
"aurelia-route-recognizer": "github:aurelia/route-recognizer",
"aurelia-router": "github:aurelia/router",
"aurelia-path": "npm:aurelia-path",
"aurelia-polymer": "github:roguePanda/aurelia-polymer",
"aurelia-route-recognizer": "npm:aurelia-route-recognizer",
"aurelia-router": "npm:aurelia-router",
"aurelia-swagger-client":"github:paulvanbladel/aurelia-swagger-client",
"aurelia-tabs": "github:vheissu/aurelia-tabs",
"aurelia-task-queue": "github:aurelia/task-queue",
"aurelia-templating": "github:aurelia/templating",
"aurelia-templating-binding": "github:aurelia/templating-binding",
"aurelia-templating-resources": "github:aurelia/templating-resources",
"aurelia-templating-router": "github:aurelia/templating-router",
"aurelia-ui-virtualization": "github:aurelia/ui-virtualization",
"aurelia-validation": "github:aurelia/validation",
"aurelia-html-import-template-loader": "github:aurelia/html-import-template-loader",
"aurelia-task-queue": "npm:aurelia-task-queue",
"aurelia-templating": "npm:aurelia-templating",
"aurelia-templating-binding": "npm:aurelia-templating-binding",
"aurelia-templating-resources": "npm:aurelia-templating-resources",
"aurelia-templating-router": "npm:aurelia-templating-router",
"aurelia-ui-virtualization": "npm:aurelia-ui-virtualization",
"aurelia-validation": "npm:aurelia-validation",
"aurelia-html-import-template-loader": "npm:aurelia-html-import-template-loader",
"aurelia-bootstrap-switch": "github:drdwilcox/aurelia-bootstrap-switch",
"aurelia-ui-framework":"github:adarshpastakia/aurelia-ui-framework",
"autosize": "github:jackmoore/autosize",
"babel": "npm:babel-core",
"babel-runtime": "npm:babel-runtime",
"babel-polyfill": "npm:babel-polyfill",
"backbone": "npm:backbone",
"backbone.babysitter": "github:marionettejs/backbone.babysitter",
"backbone.wreqr": "github:marionettejs/backbone.wreqr",
@@ -135,11 +161,13 @@
"bacon-matchers": "npm:bacon.matchers",
"bacon-model": "npm:bacon.model",
"basespace": "npm:basespace",
"belmgr-plugins": "npm:belmgr-plugins",
"benchmark": "npm:benchmark",
"big.js": "npm:big.js",
"bignumber.js": "npm:bignumber.js",
"bluebird": "npm:bluebird",
"bootstrap": "github:twbs/bootstrap",
"bootstrap-fileinput": "github:kartik-v/bootstrap-fileinput",
"bootstrap-less": "github:distros/bootstrap-less",
"bootstrap-material": "github:fezVrasta/bootstrap-material-design",
"bootstrap-sass": "github:twbs/bootstrap-sass",
@@ -148,13 +176,16 @@
"bootstrap3-dialog": "github:nakupanda/bootstrap3-dialog",
"breeze": "npm:breeze-client",
"buffer": "github:jspm/nodelibs-buffer",
"can": "npm:can",
"chai": "npm:chai",
"chart": "github:nnnick/Chart.js",
"chartist": "npm:chartist",
"child_process": "github:jspm/nodelibs-child_process",
"chosen": "github:harvesthq/chosen",
"chronoman": "npm:chronoman",
"cloudinary_js": "github:cloudinary/cloudinary_js",
"cluster": "github:jspm/nodelibs-cluster",
"cmdrjs": "github:cmdrjs/cmdrjs",
"cola": "github:cujojs/cola",
"comma-separated-values": "github:knrz/CSV.js",
"console": "github:jspm/nodelibs-console",
@@ -166,7 +197,9 @@
"curl": "github:cujojs/curl",
"cytoscape":"github:cytoscape/cytoscape.js",
"cytoscape.js":"github:cytoscape/cytoscape.js",
"d3": "github:mbostock/d3",
"d3": "npm:d3",
"d3-legend": "github:susielu/d3-legend",
"c3": "npm:c3",
"datatables": "github:DataTables/DataTables",
"debug": "github:visionmedia/debug",
"decimal.js": "github:MikeMcl/decimal.js",
@@ -181,6 +214,7 @@
"elastic.js": "github:fullscale/elastic.js",
"ember": "github:components/ember",
"ember-data": "github:components/ember-data",
"ember-wiz": "github:ricottatosta/ember-wiz",
"es5-shim": "github:es-shims/es5-shim",
"es6-shim": "github:es-shims/es6-shim",
"eva": "npm:eva",
@@ -194,9 +228,11 @@
"fermtest": "github:Fermium-co/FermTest",
"fetch": "github:github/fetch",
"firebase": "github:firebase/firebase-bower",
"flow.js": "github:flowjs/flow.js",
"flowtype": "github:simplefocus/FlowType.JS",
"flux": "npm:flux",
"font-awesome": "npm:font-awesome",
"foundation": "github:zurb/bower-foundation",
"foundation": "npm:foundation-sites",
"fs": "github:jspm/nodelibs-fs",
"golden-layout": "npm:golden-layout",
"greensock": "github:greensock/GreenSock-JS",
@@ -216,19 +252,24 @@
"humanize-duration": "github:EvanHahn/HumanizeDuration.js",
"hyperagent": "github:weluse/hyperagent",
"i18next-client": "npm:i18next-client",
"i18next": "github:i18next/i18next",
"Intl.js": "github:andyearnshaw/Intl.js",
"icheck": "github:fronteed/iCheck",
"titip": "github:quantumui/titip",
"immstruct": "npm:immstruct",
"immutable": "npm:immutable",
"infamous": "npm:infamous",
"intro": "github:usablica/intro.js",
"ionic": "github:driftyco/ionic-bower",
"ionic2": "npm:ionic-framework",
"jcrop": "github:tapmodo/Jcrop",
"jiff": "github:cujojs/jiff",
"joi": "github:capaj/joi-browser",
"jquery": "github:components/jquery",
"jquery": "npm:jquery",
"jquery-ui": "github:components/jqueryui",
"jquery-ui-layout": "github:allpro/layout",
"jquery-autosize": "github:jackmoore/autosize",
"jquery-custom-selection": "github:michalstocki/jquery-custom-selection",
"jquery-fancytree": "github:mar10/fancytree",
"jquery-file-upload": "github:blueimp/jQuery-File-Upload",
"jquery-hoverIntent": "github:briancherne/jquery-hoverIntent",
@@ -262,26 +303,31 @@
"jssha": "github:Caligatio/jsSHA",
"js-cookie": "github:js-cookie/js-cookie",
"js-scrypt": "github:tonyg/js-scrypt",
"kendo-ui": "github:kendo-labs/bower-kendo-ui",
"kickstrap": "github:ajkochanowicz/Kickstrap",
"klayjs": "github:OpenKieler/klayjs",
"kl-watch-once": "github:kasperlewau/kl-watch-once",
"kendo-ui": "github:kendo-labs/bower-kendo-ui",
"knockout": "github:knockout/knockout",
"knockout-paging": "npm:knockout-paging",
"knockout-pre-rendered": "npm:knockout-pre-rendered",
"knockout-validation": "github:Knockout-Contrib/Knockout-Validation",
"lazy":"npm:lazy.js",
"leaflet": "github:Leaflet/Leaflet",
"less.js": "github:distros/less",
"lightbox2": "github:lokesh/lightbox2",
"linq4es2015": "github:Fermium-co/LINQ4ES2015",
"localforage": "npm:localforage",
"lodash": "npm:lodash",
"log4js": "github:mobilexag/log4js",
"malihu-custom-scrollbar-plugin": "github:malihu/malihu-custom-scrollbar-plugin",
"marionette": "github:marionettejs/backbone.marionette",
"masonry": "github:desandro/masonry",
"material-design-lite": "github:google/material-design-lite",
"material-design-icons": "github:google/material-design-icons",
"materialize": "github:Dogfalo/materialize",
"materialize": "npm:materialize",
"mbe-nodes": "github:OptimalBPM/mbe-nodes",
"meld": "github:cujojs/meld",
"messageformat": "npm:messageformat",
"microplugin": "npm:microplugin",
"minivents": "github:allouis/minivents",
"mithril": "npm:mithril",
@@ -289,36 +335,44 @@
"mocha": "npm:mocha",
"modernizr": "github:Modernizr/Modernizr",
"module": "github:jspm/nodelibs-module",
"moment": "github:moment/moment",
"moment": "npm:moment",
"moment-json-parser": "npm:moment-json-parser",
"mongoose": "github:gavinaiken/mongoose-browser",
"moonridge-client": "github:capaj/Moonridge-client",
"moonridge-client": "github:capaj/moonridge-client",
"mq4-hover-shim": "npm:mq4-hover-shim",
"msgs": "github:cujojs/msgs",
"mustache": "github:janl/mustache.js",
"net": "github:jspm/nodelibs-net",
"nexridge-client": "github:capaj/nexridge-client",
"ng-dialog": "npm:ng-dialog",
"ng-flow": "github:flowjs/ng-flow",
"ng-infinite-scroll": "github:sroze/ngInfiniteScroll",
"ng-inline": "github:zachsnow/ng-inline",
"ng-jcrop": "github:andrefarzat/ng-jcrop",
"ng-multi-transclude": "github:zachsnow/ng-multi-transclude",
"ng-sortable": "github:a5hik/ng-sortable",
"ng-table": "github:esvit/ng-table",
"ng2-bootstrap": "npm:ng2-bootstrap",
"ng2-markdown-component": "github:evanplaice/ng2-markdown-component",
"ngmap": "github:allenhwkim/angularjs-google-maps",
"ns-popover": "github:nohros/nsPopover",
"nodelibs": "github:jspm/nodelibs",
"normalize.css": "github:necolas/normalize.css",
"nprogress": "github:rstacruz/nprogress",
"numeral": "npm:numeral",
"numgen": "npm:numgen",
"nunjucks": "github:mozilla/nunjucks",
"observe-js": "github:Polymer/observe-js",
"oidc-client": "github:IdentityModel/oidc-client",
"omniscient": "npm:omniscient",
"onsenui": "npm:onsenui",
"open-sans-fontface": "github:FontFaceKit/open-sans",
"os": "github:jspm/nodelibs-os",
"p5": "github:processing/p5.js",
"page": "npm:page",
"parallax": "github:wagerfield/parallax",
"path": "github:jspm/nodelibs-path",
"paths-js": "npm:paths-js",
"pdfmake": "github:bpampuch/pdfmake",
"phaser": "github:photonstorm/phaser",
"pikaday": "github:dbushell/Pikaday",
@@ -331,11 +385,13 @@
"prism": "github:LeaVerou/prism",
"process": "github:jspm/nodelibs-process",
"punycode": "github:jspm/nodelibs-punycode",
"purecss": "npm:purecss",
"puremvc-standard": "github:PureMVC/puremvc-typescript-standard-framework",
"puremvc-multicore": "github:PureMVC/puremvc-typescript-multicore-framework",
"querystring": "github:jspm/nodelibs-querystring",
"qunit": "github:jquery/qunit",
"ractive": "github:ractivejs/ractive",
"ramda": "npm:ramda",
"rangy": "github:timdown/rangy-release",
"raphael": "github:DmitryBaranovskiy/raphael",
"ratchet": "github:maker/ratchet",
@@ -343,9 +399,13 @@
"react": "npm:react",
"react-dom": "npm:react-dom",
"react-router": "npm:react-router",
"jest-cli": "npm:jest-cli",
"readline": "github:jspm/nodelibs-readline",
"redis": "npm:redis",
"redux": "npm:redux",
"redux-devtools": "npm:redux-devtools",
"react-redux": "npm:react-redux",
"react-morph-material-icons": "github:friktor/react-material-icons",
"reflect-metadata": "npm:reflect-metadata",
"reflux": "npm:reflux",
"regenerator": "npm:regenerator",
@@ -355,9 +415,11 @@
"rest": "github:cujojs/rest",
"restangular": "github:mgonto/restangular",
"return-function": "npm:return-function",
"riot": "npm:riot",
"rx": "npm:rx",
"rx-angular": "npm:rx-angular",
"rx-dom": "npm:rx-dom",
"rxjs": "npm:rxjs",
"saairey-bootstrap-wizard": "github:saairey/bootstrap-wizard",
"sass.js": "npm:sass.js",
"select2": "github:select2/select2",
@@ -366,20 +428,28 @@
"scoped-polyfill": "github:PM5544/scoped-polyfill",
"showdown": "github:showdownjs/showdown",
"sifter": "github:brianreavis/sifter.js",
"simple-date": "npm:simple-datejs",
"skeleton": "github:dhg/Skeleton",
"skrollr": "github:Prinzhorn/skrollr",
"snap.svg": "github:adobe-webplatform/Snap.svg",
"sockjs-client": "github:sockjs/sockjs-client",
"socket.io-client": "github:socketio/socket.io-client",
"socket.io-rpc-client": "github:capaj/socket.io-rpc-client",
"spark":"npm:spark",
"spin": "github:fgnass/spin.js",
"sprintf-js": "npm:sprintf-js",
"ss-utils": "npm:ss-utils",
"stomp-websocket": "github:jmesnil/stomp-websocket",
"stream": "github:jspm/nodelibs-stream",
"string_decoder": "github:jspm/nodelibs-string_decoder",
"stylific": "npm:stylific",
"superagent": "npm:superagent",
"svg.js" : "github:wout/svg.js",
"svg.js": "github:wout/svg.js",
"systemjs-hot-reloader": "github:capaj/systemjs-hot-reloader",
"t7": "npm:t7",
"tabletools": "github:DataTables/TableTools",
"tag":"npm:systemjs-riot",
"tape": "npm:tape",
"teo": "npm:teo",
"textAngular": "github:fraywing/textAngular",
"three.js": "github:mrdoob/three.js",
@@ -387,6 +457,7 @@
"threestrap": "github:unconed/threestrap",
"theseus": "npm:theseus",
"theseus-angular": "npm:theseus-angular",
"toastr": "github:CodeSeven/toastr",
"topo": "github:capaj/topo-browser",
"timers": "github:jspm/nodelibs-timers",
"tinycolor": "github:bgrins/TinyColor",
@@ -421,6 +492,7 @@
"wordcloud2": "github:timdream/wordcloud2.js",
"xlsjs": "github:SheetJS/js-xls",
"xlsx": "github:SheetJS/js-xlsx",
"zepto": "npm:zepto",
"zlib": "github:jspm/nodelibs-zlib",
"zone.js": "npm:zone.js",
"zygo": "github:zygo-io/zygo",
+9 -2
View File
@@ -14,16 +14,23 @@ var ALLOWED_PROPERTIES = [
'registry',
'dependencies',
'devDependencies',
'peerDependencies',
'optionalDependencies',
'directories.lib',
'directories.dist',
'format',
'map',
'meta',
'jspmPackage',
'defaultExtension',
'files',
'ignore',
'shim',
'jspmNodeConversion',
'browser'
'browser',
'modules',
'systemjs',
'defaultExtension'
];
/**