Tue Apr 10 04:56:37 CEST 2018

gh-pages
c9jenkinsv3 2018-04-10 04:56:37 +02:00
rodzic 2804c2edf4
commit ab4ec7e5fc
10 zmienionych plików z 31 dodań i 29 usunięć

Wyświetl plik

@ -40,7 +40,6 @@
"process"
]
},
"gitHead": "39015d544d4c00c7899fea4c95c2e5bc2720e68e",
"contributors": [
{
"name": "List of Tern contributors. Updated before every release."
@ -241,6 +240,7 @@
"name": "vheon"
}
],
"gitHead": "39015d544d4c00c7899fea4c95c2e5bc2720e68e",
"readme": "# Tern\n\n[![Build Status](https://secure.travis-ci.org/ternjs/tern.png)](http://travis-ci.org/ternjs/tern)\n[![NPM version](https://img.shields.io/npm/v/tern.svg)](https://www.npmjs.org/package/tern) \n[Funding status: ![maintainer happiness](https://marijnhaverbeke.nl/fund/status_s.png?again)](https://marijnhaverbeke.nl/fund/)\n\nThis is [Tern][1]. Tern is a stand-alone, editor-independent\nJavaScript analyzer that can be used to improve the JavaScript\nintegration of existing editors.\n\nThanks to a group of generous [crowd funders][2], Tern is open-source\nsoftware, under an MIT license.\n\nThere are currently plugins available for [Emacs][emacs] (and Emacs\n[company-mode][cmode]), [Vim][vim], [Sublime Text][st], [Eclipse (and general Java API)][ec],\n[Light Table][lt], [Atom][atom] and [gedit][gedit], and built-in support in\n[Brackets][brackets], [Edge Code][edge_code], and [CodeLite](http://codelite.org/).\n\nFor further documentation, see the [project page][1] and the\n[manual][3]. To report issues, use the\n[issue tracker](https://github.com/ternjs/tern/issues). For questions\nand documentation, see the\n[discussion forum](https://discuss.ternjs.net).\n\n[1]: http://ternjs.net\n[2]: http://www.indiegogo.com/projects/tern-intelligent-javascript-editing\n[3]: http://ternjs.net/doc/manual.html\n\n[emacs]: http://ternjs.net/doc/manual.html#emacs\n[ec]: https://github.com/angelozerr/tern.java\n[vim]: https://github.com/ternjs/tern_for_vim\n[st]: https://github.com/ternjs/tern_for_sublime\n[lt]: https://github.com/mortalapeman/LT-TernJS\n[atom]: https://atom.io/packages/atom-ternjs\n[gedit]: https://github.com/Swatinem/tern_for_gedit\n[brackets]: http://brackets.io\n[edge_code]: http://html.adobe.com/edge/code\n[cmode]: https://github.com/proofit404/company-tern\n",
"readmeFilename": "README.md",
"bugs": {
@ -248,7 +248,7 @@
},
"homepage": "https://github.com/ternjs/tern#readme",
"_id": "tern@0.16.1",
"_shasum": "fb8c1bf8a17a2115f128f9a0070fea4a45f58864",
"_shasum": "fee05f987aa955c523322f44a76e04d1cf329aad",
"_from": "git+https://github.com/cloud9ide/tern.git#39015d544d4c00c7899fea4c95c2e5bc2720e68e",
"_resolved": "git+https://github.com/cloud9ide/tern.git#39015d544d4c00c7899fea4c95c2e5bc2720e68e"
}

Wyświetl plik

@ -20,7 +20,7 @@
"readme": "# tern_from_ts\n\nTern signatures extracted from typescript signatures.\n\nLicense: MIT\n\nSee also https://github.com/marijnh/tern and https://github.com/borisyankov/DefinitelyTyped\n",
"readmeFilename": "README.md",
"_id": "tern_from_ts@0.0.1",
"_shasum": "0ef643c550885e5c8aa576e56b4da30fc852b91f",
"_shasum": "ed5d10ad7041f4c71d863d3e32469b9258bb7632",
"_from": "git+https://github.com/cloud9ide/tern_from_ts.git#66df507986bbdd63f3bc4f0c53edb39169ce4f1c",
"_resolved": "git+https://github.com/cloud9ide/tern_from_ts.git#66df507986bbdd63f3bc4f0c53edb39169ce4f1c"
}

Wyświetl plik

@ -1 +0,0 @@
62638

Wyświetl plik

@ -233,8 +233,8 @@ RequestSigner.prototype.canonicalString = function() {
if (normalizePath && piece === '..') {
path.pop()
} else if (!normalizePath || piece !== '.') {
if (decodePath) piece = querystring.unescape(piece)
path.push(encodeRfc3986(querystring.escape(piece)))
if (decodePath) piece = decodeURIComponent(piece)
path.push(encodeRfc3986(encodeURIComponent(piece)))
}
return path
}, []).join('/')
@ -303,7 +303,7 @@ RequestSigner.prototype.parsePath = function() {
// So if there are non-reserved chars (and it's not already all % encoded), just encode them all
if (/[^0-9A-Za-z!'()*\-._~%/]/.test(path)) {
path = path.split('/').map(function(piece) {
return querystring.escape(querystring.unescape(piece))
return encodeURIComponent(decodeURIComponent(piece))
}).join('/')
}

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "aws4",
"version": "1.6.0",
"version": "1.7.0",
"description": "Signs and prepares requests using AWS Signature Version 4",
"author": {
"name": "Michael Hart",
@ -72,34 +72,37 @@
"scripts": {
"test": "mocha ./test/fast.js ./test/slow.js -b -t 100s -R list"
},
"gitHead": "74bf0b64d1e8cbcd184964999c7ef53f52d7ad32",
"gitHead": "58a4cfddcea0d31c2ea60f967b7ec072b7e42ee5",
"bugs": {
"url": "https://github.com/mhart/aws4/issues"
},
"homepage": "https://github.com/mhart/aws4#readme",
"_id": "aws4@1.6.0",
"_shasum": "83ef5ca860b2b32e4a0deedee8c771b9db57471e",
"_from": "aws4@>=1.2.1 <2.0.0",
"_npmVersion": "4.0.5",
"_nodeVersion": "4.5.0",
"_id": "aws4@1.7.0",
"_npmVersion": "5.8.0",
"_nodeVersion": "8.11.0",
"_npmUser": {
"name": "hichaelmart",
"email": "michael.hart.au@gmail.com"
},
"dist": {
"integrity": "sha512-32NDda82rhwD9/JBCCkB+MRYDp0oSvlo2IL6rQWA10PQi7tDUM3eqMSltXmY+Oyl/7N3P3qNtAlv7X0d9bI28w==",
"shasum": "d4d0e9b9dbfca77bf08eeb0a8a471550fe39e289",
"tarball": "https://registry.npmjs.org/aws4/-/aws4-1.7.0.tgz",
"fileCount": 6,
"unpackedSize": 31916
},
"maintainers": [
{
"name": "hichaelmart",
"email": "michael.hart.au@gmail.com"
}
],
"dist": {
"shasum": "83ef5ca860b2b32e4a0deedee8c771b9db57471e",
"tarball": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz"
},
"_npmOperationalInternal": {
"host": "packages-18-east.internal.npmjs.com",
"tmp": "tmp/aws4-1.6.0.tgz_1486481933920_0.6127187723759562"
},
"directories": {},
"_resolved": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz"
"_npmOperationalInternal": {
"host": "s3://npm-registry-packages",
"tmp": "tmp/aws4_1.7.0_1523139854595_0.22793470969680474"
},
"_shasum": "d4d0e9b9dbfca77bf08eeb0a8a471550fe39e289",
"_resolved": "https://registry.npmjs.org/aws4/-/aws4-1.7.0.tgz",
"_from": "aws4@>=1.2.1 <2.0.0"
}

2
node_modules/nak/package.json wygenerowano vendored
Wyświetl plik

@ -52,7 +52,7 @@
},
"homepage": "https://github.com/gjtorikian/nak#readme",
"_id": "nak@0.3.3",
"_shasum": "d6b690cd59cb747e6f192edb8bb70d189e427c05",
"_shasum": "d4c6a1d2d163b205d6e85dac13b82fcf96d06da5",
"_from": "git+https://github.com/cloud9ide/nak.git#6deef931594",
"_resolved": "git+https://github.com/cloud9ide/nak.git#6deef931594787edd167040f7352e3e7533430e4"
}

4
node_modules/tern/package.json wygenerowano vendored
Wyświetl plik

@ -40,7 +40,6 @@
"process"
]
},
"gitHead": "39015d544d4c00c7899fea4c95c2e5bc2720e68e",
"contributors": [
{
"name": "List of Tern contributors. Updated before every release."
@ -241,6 +240,7 @@
"name": "vheon"
}
],
"gitHead": "39015d544d4c00c7899fea4c95c2e5bc2720e68e",
"readme": "# Tern\n\n[![Build Status](https://secure.travis-ci.org/ternjs/tern.png)](http://travis-ci.org/ternjs/tern)\n[![NPM version](https://img.shields.io/npm/v/tern.svg)](https://www.npmjs.org/package/tern) \n[Funding status: ![maintainer happiness](https://marijnhaverbeke.nl/fund/status_s.png?again)](https://marijnhaverbeke.nl/fund/)\n\nThis is [Tern][1]. Tern is a stand-alone, editor-independent\nJavaScript analyzer that can be used to improve the JavaScript\nintegration of existing editors.\n\nThanks to a group of generous [crowd funders][2], Tern is open-source\nsoftware, under an MIT license.\n\nThere are currently plugins available for [Emacs][emacs] (and Emacs\n[company-mode][cmode]), [Vim][vim], [Sublime Text][st], [Eclipse (and general Java API)][ec],\n[Light Table][lt], [Atom][atom] and [gedit][gedit], and built-in support in\n[Brackets][brackets], [Edge Code][edge_code], and [CodeLite](http://codelite.org/).\n\nFor further documentation, see the [project page][1] and the\n[manual][3]. To report issues, use the\n[issue tracker](https://github.com/ternjs/tern/issues). For questions\nand documentation, see the\n[discussion forum](https://discuss.ternjs.net).\n\n[1]: http://ternjs.net\n[2]: http://www.indiegogo.com/projects/tern-intelligent-javascript-editing\n[3]: http://ternjs.net/doc/manual.html\n\n[emacs]: http://ternjs.net/doc/manual.html#emacs\n[ec]: https://github.com/angelozerr/tern.java\n[vim]: https://github.com/ternjs/tern_for_vim\n[st]: https://github.com/ternjs/tern_for_sublime\n[lt]: https://github.com/mortalapeman/LT-TernJS\n[atom]: https://atom.io/packages/atom-ternjs\n[gedit]: https://github.com/Swatinem/tern_for_gedit\n[brackets]: http://brackets.io\n[edge_code]: http://html.adobe.com/edge/code\n[cmode]: https://github.com/proofit404/company-tern\n",
"readmeFilename": "README.md",
"bugs": {
@ -248,7 +248,7 @@
},
"homepage": "https://github.com/ternjs/tern#readme",
"_id": "tern@0.16.1",
"_shasum": "fb8c1bf8a17a2115f128f9a0070fea4a45f58864",
"_shasum": "fee05f987aa955c523322f44a76e04d1cf329aad",
"_from": "git+https://github.com/cloud9ide/tern.git#39015d544d4c00c7899fea4c95c2e5bc2720e68e",
"_resolved": "git+https://github.com/cloud9ide/tern.git#39015d544d4c00c7899fea4c95c2e5bc2720e68e"
}

2
node_modules/tern_from_ts/package.json wygenerowano vendored
Wyświetl plik

@ -20,7 +20,7 @@
"readme": "# tern_from_ts\n\nTern signatures extracted from typescript signatures.\n\nLicense: MIT\n\nSee also https://github.com/marijnh/tern and https://github.com/borisyankov/DefinitelyTyped\n",
"readmeFilename": "README.md",
"_id": "tern_from_ts@0.0.1",
"_shasum": "0ef643c550885e5c8aa576e56b4da30fc852b91f",
"_shasum": "ed5d10ad7041f4c71d863d3e32469b9258bb7632",
"_from": "git+https://github.com/cloud9ide/tern_from_ts.git#66df507986bbdd63f3bc4f0c53edb39169ce4f1c",
"_resolved": "git+https://github.com/cloud9ide/tern_from_ts.git#66df507986bbdd63f3bc4f0c53edb39169ce4f1c"
}

Wyświetl plik

@ -49,5 +49,5 @@
},
"devDependencies": {},
"licenses": [],
"revision": "dd1a54fd1fcae67f505908b20a0fcba0beb7c751"
"revision": "a4f0cca8029099c3e46c18875e81477c89494d50"
}

Wyświetl plik

@ -1 +1 @@
1523069792
1523328993