Showing
1000 changed files
with
362 additions
and
906 deletions
Too many changes to show.
To preserve performance only 1000 of 1000+ files are displayed.
.DS_Store
100644 → 100755
No preview for this file type
.gitattributes
100644 → 100755
File mode changed
app.js
100644 → 100755
... | @@ -119,7 +119,8 @@ io.sockets.on('connection', function(socket) { | ... | @@ -119,7 +119,8 @@ io.sockets.on('connection', function(socket) { |
119 | } | 119 | } |
120 | else{ | 120 | else{ |
121 | console.log(logString+'익명 유저의 채팅 전송을 거부했습니다.('+ip+')') | 121 | console.log(logString+'익명 유저의 채팅 전송을 거부했습니다.('+ip+')') |
122 | - // | 122 | + // 세션이 없어진 사용자들 처리 |
123 | + socket.emit('update', {type: 'ERROR'}) | ||
123 | } | 124 | } |
124 | }) | 125 | }) |
125 | 126 | ... | ... |
assets/.DS_Store
100644 → 100755
No preview for this file type
assets/favicon.ico
100644 → 100755
No preview for this file type
assets/img/.DS_Store
100644 → 100755
No preview for this file type
assets/img/1637828679822__KakaoTalk_20211101_105553534.jpg
100644 → 100755
assets/img/1637828765031__말대꾸.png
100644 → 100755
assets/img/1637828786325__119.png
100644 → 100755
assets/img/1637828851198__punch.jpg
100644 → 100755
assets/img/1637828946852__KakaoTalk_20211125_172858534.png
100644 → 100755
assets/img/1637828971682__1.png
100644 → 100755
assets/img/1637829034008__punch.jpg
100644 → 100755
assets/img/1637841610888__배승호.jpg
100644 → 100755
assets/img/1637843919869__KakaoTalk_20211101_105553534.jpg
100644 → 100755
assets/img/1637843944411__KakaoTalk_20211101_105553534.jpg
100644 → 100755
assets/img/1637844076277__16378440599544073660253345957425.jpg
100644 → 100755
assets/img/1637844200559__KakaoTalk_20211106_145723087.mp4
100644 → 100755
No preview for this file type
assets/img/1637844253783__KakaoTalk_20211116_160425300.png
100644 → 100755
assets/img/1637844413941__배승호.jpg
100644 → 100755
assets/img/1637920872351__KakaoTalk_20211125_172858534.png
100644 → 100755
assets/img/1637920886102__배승호.jpg
100644 → 100755
assets/img/1637923425886__z.png
100644 → 100755
assets/img/bae.jpg
100644 → 100755
assets/img/bg-masthead.jpg
100644 → 100755
assets/img/bg-showcase-1.jpg
100644 → 100755
assets/img/bg-showcase-2.png
100644 → 100755
assets/img/bg-showcase-3.jpg
100644 → 100755
assets/img/choi.jpg
100644 → 100755
assets/img/ko.jpg
100644 → 100755
assets/img/noneprofilepic.png
100644 → 100755
assets/아이콘.png
100644 → 100755
css/board.css
100644 → 100755
File mode changed
css/chat.css
100644 → 100755
File mode changed
css/profile.css
100644 → 100755
File mode changed
css/styles.css
100644 → 100755
File mode changed
db/db_board.js
100644 → 100755
File mode changed
db/db_info.js
100644 → 100755
File mode changed
js/chat.js
100644 → 100755
... | @@ -11,11 +11,15 @@ socket.on('connect', function() { | ... | @@ -11,11 +11,15 @@ socket.on('connect', function() { |
11 | 11 | ||
12 | /* 서버로부터 데이터 받은 경우 */ | 12 | /* 서버로부터 데이터 받은 경우 */ |
13 | socket.on('update', function(data) { | 13 | socket.on('update', function(data) { |
14 | + try{ | ||
14 | var chat = document.getElementById('chat') | 15 | var chat = document.getElementById('chat') |
15 | 16 | ||
16 | var message = document.createElement('div') | 17 | var message = document.createElement('div') |
17 | var node; | 18 | var node; |
18 | - if(data.name != "SERVER"){ | 19 | + if(data.name == "ERROR"){ |
20 | + throw 'ERROR'; // 서버 재시작 후 세션이 없어진 경우 throw | ||
21 | + } | ||
22 | + else if(data.name != "SERVER"){ | ||
19 | node = document.createTextNode(`${data.name}: ${data.message}`) | 23 | node = document.createTextNode(`${data.name}: ${data.message}`) |
20 | } | 24 | } |
21 | else{ | 25 | else{ |
... | @@ -47,10 +51,17 @@ socket.on('update', function(data) { | ... | @@ -47,10 +51,17 @@ socket.on('update', function(data) { |
47 | element.scrollTop = element.scrollHeight - element.clientHeight; | 51 | element.scrollTop = element.scrollHeight - element.clientHeight; |
48 | } | 52 | } |
49 | a(); | 53 | a(); |
54 | + } | ||
55 | + catch(e){ // 서버 재시작 후 세션이 사라진 경우 팝업_채팅창에서 알림창을 띄우고 팝업창 끄기->기존 창 새로고침 | ||
56 | + alert("세션이 만료되었습니다.") | ||
57 | + self.close(); | ||
58 | + opener.document.location.href="/main" | ||
59 | + } | ||
50 | }) | 60 | }) |
51 | 61 | ||
52 | /* 메시지 전송 함수 */ | 62 | /* 메시지 전송 함수 */ |
53 | function send() { | 63 | function send() { |
64 | + | ||
54 | // 입력되어있는 데이터 가져오기 | 65 | // 입력되어있는 데이터 가져오기 |
55 | var message = document.getElementById('test').value | 66 | var message = document.getElementById('test').value |
56 | 67 | ... | ... |
js/command.js
100644 → 100755
File mode changed
js/scripts.js
100644 → 100755
File mode changed
node_modules/.bin/acorn
100644 → 100755
File mode changed
node_modules/.bin/acorn.cmd
100644 → 100755
File mode changed
node_modules/.bin/acorn.ps1
100644 → 100755
File mode changed
node_modules/.bin/detect-libc
0 → 120000
1 | +../detect-libc/bin/detect-libc.js | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
node_modules/.bin/detect-libc
deleted
100644 → 0
1 | -#!/bin/sh | ||
2 | -basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") | ||
3 | - | ||
4 | -case `uname` in | ||
5 | - *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; | ||
6 | -esac | ||
7 | - | ||
8 | -if [ -x "$basedir/node" ]; then | ||
9 | - "$basedir/node" "$basedir/../detect-libc/bin/detect-libc.js" "$@" | ||
10 | - ret=$? | ||
11 | -else | ||
12 | - node "$basedir/../detect-libc/bin/detect-libc.js" "$@" | ||
13 | - ret=$? | ||
14 | -fi | ||
15 | -exit $ret |
node_modules/.bin/detect-libc.cmd
100644 → 100755
File mode changed
node_modules/.bin/detect-libc.ps1
100644 → 100755
File mode changed
node_modules/.bin/ejs
100644 → 100755
File mode changed
node_modules/.bin/ejs.cmd
100644 → 100755
File mode changed
node_modules/.bin/ejs.ps1
100644 → 100755
File mode changed
node_modules/.bin/escodegen
100644 → 100755
File mode changed
node_modules/.bin/escodegen.cmd
100644 → 100755
File mode changed
node_modules/.bin/escodegen.ps1
100644 → 100755
File mode changed
node_modules/.bin/esgenerate
100644 → 100755
File mode changed
node_modules/.bin/esgenerate.cmd
100644 → 100755
File mode changed
node_modules/.bin/esgenerate.ps1
100644 → 100755
File mode changed
node_modules/.bin/esparse
100644 → 100755
File mode changed
node_modules/.bin/esparse.cmd
100644 → 100755
File mode changed
node_modules/.bin/esparse.ps1
100644 → 100755
File mode changed
node_modules/.bin/esvalidate
100644 → 100755
File mode changed
node_modules/.bin/esvalidate.cmd
100644 → 100755
File mode changed
node_modules/.bin/esvalidate.ps1
100644 → 100755
File mode changed
node_modules/.bin/jake
100644 → 100755
File mode changed
node_modules/.bin/jake.cmd
100644 → 100755
File mode changed
node_modules/.bin/jake.ps1
100644 → 100755
File mode changed
node_modules/.bin/mime
100644 → 100755
File mode changed
node_modules/.bin/mime.cmd
100644 → 100755
File mode changed
node_modules/.bin/mime.ps1
100644 → 100755
File mode changed
node_modules/.bin/mkdirp
100644 → 100755
File mode changed
node_modules/.bin/mkdirp.cmd
100644 → 100755
File mode changed
node_modules/.bin/mkdirp.ps1
100644 → 100755
File mode changed
node_modules/.bin/prebuild-install
0 → 120000
1 | +../prebuild-install/bin.js | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
node_modules/.bin/prebuild-install
deleted
100644 → 0
1 | -#!/bin/sh | ||
2 | -basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") | ||
3 | - | ||
4 | -case `uname` in | ||
5 | - *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; | ||
6 | -esac | ||
7 | - | ||
8 | -if [ -x "$basedir/node" ]; then | ||
9 | - "$basedir/node" "$basedir/../prebuild-install/bin.js" "$@" | ||
10 | - ret=$? | ||
11 | -else | ||
12 | - node "$basedir/../prebuild-install/bin.js" "$@" | ||
13 | - ret=$? | ||
14 | -fi | ||
15 | -exit $ret |
node_modules/.bin/prebuild-install.cmd
100644 → 100755
File mode changed
node_modules/.bin/prebuild-install.ps1
100644 → 100755
File mode changed
node_modules/.bin/rc
0 → 120000
1 | +../rc/cli.js | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
node_modules/.bin/rc
deleted
100644 → 0
1 | -#!/bin/sh | ||
2 | -basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") | ||
3 | - | ||
4 | -case `uname` in | ||
5 | - *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; | ||
6 | -esac | ||
7 | - | ||
8 | -if [ -x "$basedir/node" ]; then | ||
9 | - "$basedir/node" "$basedir/../rc/cli.js" "$@" | ||
10 | - ret=$? | ||
11 | -else | ||
12 | - node "$basedir/../rc/cli.js" "$@" | ||
13 | - ret=$? | ||
14 | -fi | ||
15 | -exit $ret |
node_modules/.bin/rc.cmd
100644 → 100755
File mode changed
node_modules/.bin/rc.ps1
100644 → 100755
File mode changed
node_modules/.bin/semver
0 → 120000
1 | +../semver/bin/semver.js | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
node_modules/.bin/semver
deleted
100644 → 0
1 | -#!/bin/sh | ||
2 | -basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") | ||
3 | - | ||
4 | -case `uname` in | ||
5 | - *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; | ||
6 | -esac | ||
7 | - | ||
8 | -if [ -x "$basedir/node" ]; then | ||
9 | - "$basedir/node" "$basedir/../semver/bin/semver.js" "$@" | ||
10 | - ret=$? | ||
11 | -else | ||
12 | - node "$basedir/../semver/bin/semver.js" "$@" | ||
13 | - ret=$? | ||
14 | -fi | ||
15 | -exit $ret |
node_modules/.bin/semver.cmd
100644 → 100755
File mode changed
node_modules/.bin/semver.ps1
100644 → 100755
File mode changed
node_modules/.bin/sshpk-conv
100644 → 100755
File mode changed
node_modules/.bin/sshpk-conv.cmd
100644 → 100755
File mode changed
node_modules/.bin/sshpk-conv.ps1
100644 → 100755
File mode changed
node_modules/.bin/sshpk-sign
100644 → 100755
File mode changed
node_modules/.bin/sshpk-sign.cmd
100644 → 100755
File mode changed
node_modules/.bin/sshpk-sign.ps1
100644 → 100755
File mode changed
node_modules/.bin/sshpk-verify
100644 → 100755
File mode changed
node_modules/.bin/sshpk-verify.cmd
100644 → 100755
File mode changed
node_modules/.bin/sshpk-verify.ps1
100644 → 100755
File mode changed
node_modules/.bin/uuid
100644 → 100755
File mode changed
node_modules/.bin/uuid.cmd
100644 → 100755
File mode changed
node_modules/.bin/uuid.ps1
100644 → 100755
File mode changed
node_modules/.bin/which
100644 → 100755
File mode changed
node_modules/.bin/which.cmd
100644 → 100755
File mode changed
node_modules/.bin/which.ps1
100644 → 100755
File mode changed
node_modules/.package-lock.json
0 → 100755
This diff could not be displayed because it is too large.
node_modules/@tootallnate/once/LICENSE
100644 → 100755
File mode changed
node_modules/@tootallnate/once/README.md
100644 → 100755
File mode changed
node_modules/@tootallnate/once/dist/index.d.ts
100644 → 100755
File mode changed
node_modules/@tootallnate/once/dist/index.js
100644 → 100755
File mode changed
node_modules/@tootallnate/once/dist/index.js.map
100644 → 100755
File mode changed
node_modules/@tootallnate/once/dist/overloaded-parameters.d.ts
100644 → 100755
File mode changed
node_modules/@tootallnate/once/dist/overloaded-parameters.js
100644 → 100755
File mode changed
node_modules/@tootallnate/once/dist/overloaded-parameters.js.map
100644 → 100755
File mode changed
node_modules/@tootallnate/once/dist/types.d.ts
100644 → 100755
File mode changed
node_modules/@tootallnate/once/dist/types.js
100644 → 100755
File mode changed
node_modules/@tootallnate/once/dist/types.js.map
100644 → 100755
File mode changed
node_modules/@tootallnate/once/package.json
100644 → 100755
File mode changed
node_modules/abab/CHANGELOG.md
100644 → 100755
File mode changed
node_modules/abab/LICENSE.md
100644 → 100755
File mode changed
node_modules/abab/README.md
100644 → 100755
File mode changed
node_modules/abab/index.d.ts
100644 → 100755
File mode changed
node_modules/abab/index.js
100644 → 100755
File mode changed
node_modules/abab/lib/atob.js
100644 → 100755
File mode changed
node_modules/abab/lib/btoa.js
100644 → 100755
File mode changed
node_modules/abab/package.json
100644 → 100755
File mode changed
node_modules/accepts/HISTORY.md
100644 → 100755
File mode changed
node_modules/accepts/LICENSE
100644 → 100755
File mode changed
node_modules/accepts/README.md
100644 → 100755
File mode changed
node_modules/accepts/index.js
100644 → 100755
File mode changed
node_modules/accepts/package.json
100644 → 100755
File mode changed
node_modules/acorn-globals/LICENSE
100644 → 100755
File mode changed
node_modules/acorn-globals/README.md
100644 → 100755
File mode changed
node_modules/acorn-globals/index.js
100644 → 100755
File mode changed
node_modules/acorn-globals/node_modules/.bin/acorn
100644 → 100755
File mode changed
node_modules/acorn-globals/node_modules/.bin/acorn.cmd
100644 → 100755
File mode changed
node_modules/acorn-globals/node_modules/.bin/acorn.ps1
100644 → 100755
File mode changed
node_modules/acorn-globals/node_modules/acorn/CHANGELOG.md
100644 → 100755
File mode changed
node_modules/acorn-globals/node_modules/acorn/LICENSE
100644 → 100755
File mode changed
node_modules/acorn-globals/node_modules/acorn/README.md
100644 → 100755
File mode changed
node_modules/acorn-globals/node_modules/acorn/bin/acorn
100644 → 100755
File mode changed
node_modules/acorn-globals/node_modules/acorn/dist/acorn.d.ts
100644 → 100755
File mode changed
node_modules/acorn-globals/node_modules/acorn/dist/acorn.js
100644 → 100755
File mode changed
node_modules/acorn-globals/node_modules/acorn/dist/acorn.js.map
100644 → 100755
File mode changed
node_modules/acorn-globals/node_modules/acorn/dist/acorn.mjs
100644 → 100755
File mode changed
File mode changed
node_modules/acorn-globals/node_modules/acorn/dist/acorn.mjs.map
100644 → 100755
File mode changed
node_modules/acorn-globals/node_modules/acorn/dist/bin.js
100644 → 100755
File mode changed
node_modules/acorn-globals/node_modules/acorn/package.json
100644 → 100755
File mode changed
node_modules/acorn-globals/package.json
100644 → 100755
File mode changed
node_modules/acorn-walk/CHANGELOG.md
100644 → 100755
File mode changed
node_modules/acorn-walk/LICENSE
100644 → 100755
File mode changed
node_modules/acorn-walk/README.md
100644 → 100755
File mode changed
node_modules/acorn-walk/dist/walk.d.ts
100644 → 100755
File mode changed
node_modules/acorn-walk/dist/walk.js
100644 → 100755
File mode changed
node_modules/acorn-walk/dist/walk.js.map
100644 → 100755
File mode changed
node_modules/acorn-walk/dist/walk.mjs
100644 → 100755
File mode changed
node_modules/acorn-walk/dist/walk.mjs.map
100644 → 100755
File mode changed
node_modules/acorn-walk/package.json
100644 → 100755
File mode changed
node_modules/acorn/CHANGELOG.md
100644 → 100755
File mode changed
node_modules/acorn/LICENSE
100644 → 100755
File mode changed
node_modules/acorn/README.md
100644 → 100755
File mode changed
node_modules/acorn/bin/acorn
100644 → 100755
File mode changed
node_modules/acorn/dist/acorn.d.ts
100644 → 100755
File mode changed
node_modules/acorn/dist/acorn.js
100644 → 100755
File mode changed
node_modules/acorn/dist/acorn.mjs
100644 → 100755
File mode changed
node_modules/acorn/dist/acorn.mjs.d.ts
100644 → 100755
File mode changed
node_modules/acorn/dist/bin.js
100644 → 100755
File mode changed
node_modules/acorn/package.json
100644 → 100755
File mode changed
node_modules/after/.npmignore
100644 → 100755
File mode changed
node_modules/after/.travis.yml
100644 → 100755
File mode changed
node_modules/after/LICENCE
100644 → 100755
File mode changed
node_modules/after/README.md
100644 → 100755
File mode changed
node_modules/after/index.js
100644 → 100755
File mode changed
node_modules/after/package.json
100644 → 100755
File mode changed
node_modules/after/test/after-test.js
100644 → 100755
File mode changed
node_modules/agent-base/README.md
100644 → 100755
File mode changed
node_modules/agent-base/dist/src/index.d.ts
100644 → 100755
File mode changed
node_modules/agent-base/dist/src/index.js
100644 → 100755
File mode changed
node_modules/agent-base/dist/src/index.js.map
100644 → 100755
File mode changed
node_modules/agent-base/dist/src/promisify.d.ts
100644 → 100755
File mode changed
node_modules/agent-base/dist/src/promisify.js
100644 → 100755
File mode changed
node_modules/agent-base/dist/src/promisify.js.map
100644 → 100755
File mode changed
node_modules/agent-base/node_modules/debug/LICENSE
100644 → 100755
File mode changed
node_modules/agent-base/node_modules/debug/README.md
100644 → 100755
File mode changed
node_modules/agent-base/node_modules/debug/package.json
100644 → 100755
File mode changed
node_modules/agent-base/node_modules/debug/src/browser.js
100644 → 100755
File mode changed
node_modules/agent-base/node_modules/debug/src/common.js
100644 → 100755
File mode changed
node_modules/agent-base/node_modules/debug/src/index.js
100644 → 100755
File mode changed
node_modules/agent-base/node_modules/debug/src/node.js
100644 → 100755
File mode changed
node_modules/agent-base/node_modules/ms/index.js
100644 → 100755
File mode changed
node_modules/agent-base/node_modules/ms/license.md
100644 → 100755
File mode changed
node_modules/agent-base/node_modules/ms/package.json
100644 → 100755
File mode changed
node_modules/agent-base/node_modules/ms/readme.md
100644 → 100755
File mode changed
node_modules/agent-base/package.json
100644 → 100755
File mode changed
node_modules/agent-base/src/index.ts
100644 → 100755
File mode changed
node_modules/agent-base/src/promisify.ts
100644 → 100755
File mode changed
node_modules/ajv/.tonic_example.js
100644 → 100755
File mode changed
node_modules/ajv/LICENSE
100644 → 100755
File mode changed
node_modules/ajv/README.md
100644 → 100755
File mode changed
node_modules/ajv/dist/ajv.bundle.js
100644 → 100755
File mode changed
node_modules/ajv/dist/ajv.min.js
100644 → 100755
File mode changed
node_modules/ajv/dist/ajv.min.js.map
100644 → 100755
File mode changed
node_modules/ajv/lib/ajv.d.ts
100644 → 100755
File mode changed
node_modules/ajv/lib/ajv.js
100644 → 100755
File mode changed
node_modules/ajv/lib/cache.js
100644 → 100755
File mode changed
node_modules/ajv/lib/compile/async.js
100644 → 100755
File mode changed
node_modules/ajv/lib/compile/equal.js
100644 → 100755
File mode changed
node_modules/ajv/lib/compile/error_classes.js
100644 → 100755
File mode changed
node_modules/ajv/lib/compile/formats.js
100644 → 100755
File mode changed
node_modules/ajv/lib/compile/index.js
100644 → 100755
File mode changed
node_modules/ajv/lib/compile/resolve.js
100644 → 100755
File mode changed
node_modules/ajv/lib/compile/rules.js
100644 → 100755
File mode changed
node_modules/ajv/lib/compile/schema_obj.js
100644 → 100755
File mode changed
node_modules/ajv/lib/compile/ucs2length.js
100644 → 100755
File mode changed
node_modules/ajv/lib/compile/util.js
100644 → 100755
File mode changed
node_modules/ajv/lib/data.js
100644 → 100755
File mode changed
node_modules/ajv/lib/definition_schema.js
100644 → 100755
File mode changed
node_modules/ajv/lib/dot/_limit.jst
100644 → 100755
File mode changed
node_modules/ajv/lib/dot/_limitItems.jst
100644 → 100755
File mode changed
node_modules/ajv/lib/dot/_limitLength.jst
100644 → 100755
File mode changed
node_modules/ajv/lib/dot/_limitProperties.jst
100644 → 100755
File mode changed
node_modules/ajv/lib/dot/allOf.jst
100644 → 100755
File mode changed
node_modules/ajv/lib/dot/anyOf.jst
100644 → 100755
File mode changed
node_modules/ajv/lib/dot/coerce.def
100644 → 100755
File mode changed
node_modules/ajv/lib/dot/comment.jst
100644 → 100755
File mode changed
node_modules/ajv/lib/dot/const.jst
100644 → 100755
File mode changed
node_modules/ajv/lib/dot/contains.jst
100644 → 100755
File mode changed
node_modules/ajv/lib/dot/custom.jst
100644 → 100755
File mode changed
node_modules/ajv/lib/dot/defaults.def
100644 → 100755
File mode changed
node_modules/ajv/lib/dot/definitions.def
100644 → 100755
File mode changed
node_modules/ajv/lib/dot/dependencies.jst
100644 → 100755
File mode changed
node_modules/ajv/lib/dot/enum.jst
100644 → 100755
File mode changed
node_modules/ajv/lib/dot/errors.def
100644 → 100755
File mode changed
node_modules/ajv/lib/dot/format.jst
100644 → 100755
File mode changed
node_modules/ajv/lib/dot/if.jst
100644 → 100755
File mode changed
node_modules/ajv/lib/dot/items.jst
100644 → 100755
File mode changed
node_modules/ajv/lib/dot/missing.def
100644 → 100755
File mode changed
node_modules/ajv/lib/dot/multipleOf.jst
100644 → 100755
File mode changed
node_modules/ajv/lib/dot/not.jst
100644 → 100755
File mode changed
node_modules/ajv/lib/dot/oneOf.jst
100644 → 100755
File mode changed
node_modules/ajv/lib/dot/pattern.jst
100644 → 100755
File mode changed
node_modules/ajv/lib/dot/properties.jst
100644 → 100755
File mode changed
node_modules/ajv/lib/dot/propertyNames.jst
100644 → 100755
File mode changed
node_modules/ajv/lib/dot/ref.jst
100644 → 100755
File mode changed
node_modules/ajv/lib/dot/required.jst
100644 → 100755
File mode changed
node_modules/ajv/lib/dot/uniqueItems.jst
100644 → 100755
File mode changed
node_modules/ajv/lib/dot/validate.jst
100644 → 100755
File mode changed
node_modules/ajv/lib/dotjs/README.md
100644 → 100755
File mode changed
node_modules/ajv/lib/dotjs/_limit.js
100644 → 100755
File mode changed
node_modules/ajv/lib/dotjs/_limitItems.js
100644 → 100755
File mode changed
node_modules/ajv/lib/dotjs/_limitLength.js
100644 → 100755
File mode changed
node_modules/ajv/lib/dotjs/_limitProperties.js
100644 → 100755
File mode changed
node_modules/ajv/lib/dotjs/allOf.js
100644 → 100755
File mode changed
node_modules/ajv/lib/dotjs/anyOf.js
100644 → 100755
File mode changed
node_modules/ajv/lib/dotjs/comment.js
100644 → 100755
File mode changed
node_modules/ajv/lib/dotjs/const.js
100644 → 100755
File mode changed
node_modules/ajv/lib/dotjs/contains.js
100644 → 100755
File mode changed
node_modules/ajv/lib/dotjs/custom.js
100644 → 100755
File mode changed
node_modules/ajv/lib/dotjs/dependencies.js
100644 → 100755
File mode changed
node_modules/ajv/lib/dotjs/enum.js
100644 → 100755
File mode changed
node_modules/ajv/lib/dotjs/format.js
100644 → 100755
File mode changed
node_modules/ajv/lib/dotjs/if.js
100644 → 100755
File mode changed
node_modules/ajv/lib/dotjs/index.js
100644 → 100755
File mode changed
node_modules/ajv/lib/dotjs/items.js
100644 → 100755
File mode changed
node_modules/ajv/lib/dotjs/multipleOf.js
100644 → 100755
File mode changed
node_modules/ajv/lib/dotjs/not.js
100644 → 100755
File mode changed
node_modules/ajv/lib/dotjs/oneOf.js
100644 → 100755
File mode changed
node_modules/ajv/lib/dotjs/pattern.js
100644 → 100755
File mode changed
node_modules/ajv/lib/dotjs/properties.js
100644 → 100755
File mode changed
node_modules/ajv/lib/dotjs/propertyNames.js
100644 → 100755
File mode changed
node_modules/ajv/lib/dotjs/ref.js
100644 → 100755
File mode changed
node_modules/ajv/lib/dotjs/required.js
100644 → 100755
File mode changed
node_modules/ajv/lib/dotjs/uniqueItems.js
100644 → 100755
File mode changed
node_modules/ajv/lib/dotjs/validate.js
100644 → 100755
File mode changed
node_modules/ajv/lib/keyword.js
100644 → 100755
File mode changed
node_modules/ajv/lib/refs/data.json
100644 → 100755
File mode changed
node_modules/ajv/lib/refs/json-schema-draft-04.json
100644 → 100755
File mode changed
node_modules/ajv/lib/refs/json-schema-draft-06.json
100644 → 100755
File mode changed
node_modules/ajv/lib/refs/json-schema-draft-07.json
100644 → 100755
File mode changed
node_modules/ajv/lib/refs/json-schema-secure.json
100644 → 100755
File mode changed
node_modules/ajv/package.json
100644 → 100755
File mode changed
node_modules/ajv/scripts/.eslintrc.yml
100644 → 100755
File mode changed
node_modules/ajv/scripts/bundle.js
100644 → 100755
File mode changed
node_modules/ajv/scripts/compile-dots.js
100644 → 100755
File mode changed
node_modules/ajv/scripts/info
100644 → 100755
File mode changed
node_modules/ajv/scripts/prepare-tests
100644 → 100755
File mode changed
node_modules/ajv/scripts/publish-built-version
100644 → 100755
File mode changed
node_modules/ajv/scripts/travis-gh-pages
100644 → 100755
File mode changed
node_modules/ansi-regex/index.js
100644 → 100755
File mode changed
node_modules/ansi-regex/license
100644 → 100755
File mode changed
node_modules/ansi-regex/package.json
100644 → 100755
1 | { | 1 | { |
2 | - "_from": "ansi-regex@^2.0.0", | 2 | + "name": "ansi-regex", |
3 | - "_id": "ansi-regex@2.1.1", | 3 | + "version": "2.1.1", |
4 | - "_inBundle": false, | 4 | + "description": "Regular expression for matching ANSI escape codes", |
5 | - "_integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", | 5 | + "license": "MIT", |
6 | - "_location": "/ansi-regex", | 6 | + "repository": "chalk/ansi-regex", |
7 | - "_phantomChildren": {}, | ||
8 | - "_requested": { | ||
9 | - "type": "range", | ||
10 | - "registry": true, | ||
11 | - "raw": "ansi-regex@^2.0.0", | ||
12 | - "name": "ansi-regex", | ||
13 | - "escapedName": "ansi-regex", | ||
14 | - "rawSpec": "^2.0.0", | ||
15 | - "saveSpec": null, | ||
16 | - "fetchSpec": "^2.0.0" | ||
17 | - }, | ||
18 | - "_requiredBy": [ | ||
19 | - "/strip-ansi" | ||
20 | - ], | ||
21 | - "_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", | ||
22 | - "_shasum": "c3b33ab5ee360d86e0e628f0468ae7ef27d654df", | ||
23 | - "_spec": "ansi-regex@^2.0.0", | ||
24 | - "_where": "C:\\Users\\bshoo\\Desktop\\OSS\\Singer-Composer\\node_modules\\strip-ansi", | ||
25 | "author": { | 7 | "author": { |
26 | "name": "Sindre Sorhus", | 8 | "name": "Sindre Sorhus", |
27 | "email": "sindresorhus@gmail.com", | 9 | "email": "sindresorhus@gmail.com", |
28 | "url": "sindresorhus.com" | 10 | "url": "sindresorhus.com" |
29 | }, | 11 | }, |
30 | - "bugs": { | 12 | + "maintainers": [ |
31 | - "url": "https://github.com/chalk/ansi-regex/issues" | 13 | + "Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)", |
32 | - }, | 14 | + "Joshua Appelman <jappelman@xebia.com> (jbnicolai.com)", |
33 | - "bundleDependencies": false, | 15 | + "JD Ballard <i.am.qix@gmail.com> (github.com/qix-)" |
34 | - "deprecated": false, | 16 | + ], |
35 | - "description": "Regular expression for matching ANSI escape codes", | ||
36 | - "devDependencies": { | ||
37 | - "ava": "0.17.0", | ||
38 | - "xo": "0.16.0" | ||
39 | - }, | ||
40 | "engines": { | 17 | "engines": { |
41 | "node": ">=0.10.0" | 18 | "node": ">=0.10.0" |
42 | }, | 19 | }, |
20 | + "scripts": { | ||
21 | + "test": "xo && ava --verbose", | ||
22 | + "view-supported": "node fixtures/view-codes.js" | ||
23 | + }, | ||
43 | "files": [ | 24 | "files": [ |
44 | "index.js" | 25 | "index.js" |
45 | ], | 26 | ], |
46 | - "homepage": "https://github.com/chalk/ansi-regex#readme", | ||
47 | "keywords": [ | 27 | "keywords": [ |
48 | "ansi", | 28 | "ansi", |
49 | "styles", | 29 | "styles", |
... | @@ -71,34 +51,10 @@ | ... | @@ -71,34 +51,10 @@ |
71 | "find", | 51 | "find", |
72 | "pattern" | 52 | "pattern" |
73 | ], | 53 | ], |
74 | - "license": "MIT", | 54 | + "devDependencies": { |
75 | - "maintainers": [ | 55 | + "ava": "0.17.0", |
76 | - { | 56 | + "xo": "0.16.0" |
77 | - "name": "Sindre Sorhus", | ||
78 | - "email": "sindresorhus@gmail.com", | ||
79 | - "url": "sindresorhus.com" | ||
80 | - }, | ||
81 | - { | ||
82 | - "name": "Joshua Appelman", | ||
83 | - "email": "jappelman@xebia.com", | ||
84 | - "url": "jbnicolai.com" | ||
85 | - }, | ||
86 | - { | ||
87 | - "name": "JD Ballard", | ||
88 | - "email": "i.am.qix@gmail.com", | ||
89 | - "url": "github.com/qix-" | ||
90 | - } | ||
91 | - ], | ||
92 | - "name": "ansi-regex", | ||
93 | - "repository": { | ||
94 | - "type": "git", | ||
95 | - "url": "git+https://github.com/chalk/ansi-regex.git" | ||
96 | - }, | ||
97 | - "scripts": { | ||
98 | - "test": "xo && ava --verbose", | ||
99 | - "view-supported": "node fixtures/view-codes.js" | ||
100 | }, | 57 | }, |
101 | - "version": "2.1.1", | ||
102 | "xo": { | 58 | "xo": { |
103 | "rules": { | 59 | "rules": { |
104 | "guard-for-in": 0, | 60 | "guard-for-in": 0, | ... | ... |
node_modules/ansi-regex/readme.md
100644 → 100755
File mode changed
node_modules/ansi-styles/index.js
100644 → 100755
File mode changed
node_modules/ansi-styles/license
100644 → 100755
File mode changed
node_modules/ansi-styles/package.json
100644 → 100755
File mode changed
node_modules/ansi-styles/readme.md
100644 → 100755
File mode changed
node_modules/append-field/.npmignore
100644 → 100755
File mode changed
node_modules/append-field/LICENSE
100644 → 100755
File mode changed
node_modules/append-field/README.md
100644 → 100755
File mode changed
node_modules/append-field/index.js
100644 → 100755
File mode changed
node_modules/append-field/lib/parse-path.js
100644 → 100755
File mode changed
node_modules/append-field/lib/set-value.js
100644 → 100755
File mode changed
node_modules/append-field/package.json
100644 → 100755
File mode changed
node_modules/append-field/test/forms.js
100644 → 100755
File mode changed
node_modules/aproba/LICENSE
100644 → 100755
File mode changed
node_modules/aproba/README.md
100644 → 100755
File mode changed
node_modules/aproba/index.js
100644 → 100755
File mode changed
node_modules/aproba/package.json
100644 → 100755
1 | { | 1 | { |
2 | - "_from": "aproba@^1.0.3", | 2 | + "name": "aproba", |
3 | - "_id": "aproba@1.2.0", | 3 | + "version": "1.2.0", |
4 | - "_inBundle": false, | 4 | + "description": "A ridiculously light-weight argument validator (now browser friendly)", |
5 | - "_integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", | 5 | + "main": "index.js", |
6 | - "_location": "/aproba", | 6 | + "directories": { |
7 | - "_phantomChildren": {}, | 7 | + "test": "test" |
8 | - "_requested": { | ||
9 | - "type": "range", | ||
10 | - "registry": true, | ||
11 | - "raw": "aproba@^1.0.3", | ||
12 | - "name": "aproba", | ||
13 | - "escapedName": "aproba", | ||
14 | - "rawSpec": "^1.0.3", | ||
15 | - "saveSpec": null, | ||
16 | - "fetchSpec": "^1.0.3" | ||
17 | - }, | ||
18 | - "_requiredBy": [ | ||
19 | - "/gauge" | ||
20 | - ], | ||
21 | - "_resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", | ||
22 | - "_shasum": "6802e6264efd18c790a1b0d517f0f2627bf2c94a", | ||
23 | - "_spec": "aproba@^1.0.3", | ||
24 | - "_where": "C:\\Users\\bshoo\\Desktop\\OSS\\Singer-Composer\\node_modules\\gauge", | ||
25 | - "author": { | ||
26 | - "name": "Rebecca Turner", | ||
27 | - "email": "me@re-becca.org" | ||
28 | - }, | ||
29 | - "bugs": { | ||
30 | - "url": "https://github.com/iarna/aproba/issues" | ||
31 | }, | 8 | }, |
32 | - "bundleDependencies": false, | ||
33 | "dependencies": {}, | 9 | "dependencies": {}, |
34 | - "deprecated": false, | ||
35 | - "description": "A ridiculously light-weight argument validator (now browser friendly)", | ||
36 | "devDependencies": { | 10 | "devDependencies": { |
37 | "standard": "^10.0.3", | 11 | "standard": "^10.0.3", |
38 | "tap": "^10.0.2" | 12 | "tap": "^10.0.2" |
39 | }, | 13 | }, |
40 | - "directories": { | ||
41 | - "test": "test" | ||
42 | - }, | ||
43 | "files": [ | 14 | "files": [ |
44 | "index.js" | 15 | "index.js" |
45 | ], | 16 | ], |
46 | - "homepage": "https://github.com/iarna/aproba", | 17 | + "scripts": { |
18 | + "test": "standard && tap -j3 test/*.js" | ||
19 | + }, | ||
20 | + "repository": { | ||
21 | + "type": "git", | ||
22 | + "url": "https://github.com/iarna/aproba" | ||
23 | + }, | ||
47 | "keywords": [ | 24 | "keywords": [ |
48 | "argument", | 25 | "argument", |
49 | "validate" | 26 | "validate" |
50 | ], | 27 | ], |
28 | + "author": "Rebecca Turner <me@re-becca.org>", | ||
51 | "license": "ISC", | 29 | "license": "ISC", |
52 | - "main": "index.js", | 30 | + "bugs": { |
53 | - "name": "aproba", | 31 | + "url": "https://github.com/iarna/aproba/issues" |
54 | - "repository": { | ||
55 | - "type": "git", | ||
56 | - "url": "git+https://github.com/iarna/aproba.git" | ||
57 | - }, | ||
58 | - "scripts": { | ||
59 | - "test": "standard && tap -j3 test/*.js" | ||
60 | }, | 32 | }, |
61 | - "version": "1.2.0" | 33 | + "homepage": "https://github.com/iarna/aproba" |
62 | } | 34 | } | ... | ... |
node_modules/are-we-there-yet/CHANGES.md
100644 → 100755
File mode changed
node_modules/are-we-there-yet/LICENSE
100644 → 100755
File mode changed
node_modules/are-we-there-yet/README.md
100644 → 100755
File mode changed
node_modules/are-we-there-yet/index.js
100644 → 100755
File mode changed
node_modules/are-we-there-yet/package.json
100644 → 100755
1 | { | 1 | { |
2 | - "_from": "are-we-there-yet@~1.1.2", | 2 | + "name": "are-we-there-yet", |
3 | - "_id": "are-we-there-yet@1.1.7", | 3 | + "version": "1.1.7", |
4 | - "_inBundle": false, | 4 | + "description": "Keep track of the overall completion of many disparate processes", |
5 | - "_integrity": "sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==", | 5 | + "main": "index.js", |
6 | - "_location": "/are-we-there-yet", | 6 | + "scripts": { |
7 | - "_phantomChildren": {}, | 7 | + "test": "standard && tap test/*.js" |
8 | - "_requested": { | ||
9 | - "type": "range", | ||
10 | - "registry": true, | ||
11 | - "raw": "are-we-there-yet@~1.1.2", | ||
12 | - "name": "are-we-there-yet", | ||
13 | - "escapedName": "are-we-there-yet", | ||
14 | - "rawSpec": "~1.1.2", | ||
15 | - "saveSpec": null, | ||
16 | - "fetchSpec": "~1.1.2" | ||
17 | }, | 8 | }, |
18 | - "_requiredBy": [ | 9 | + "repository": { |
19 | - "/npmlog" | 10 | + "type": "git", |
20 | - ], | 11 | + "url": "https://github.com/iarna/are-we-there-yet.git" |
21 | - "_resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz", | ||
22 | - "_shasum": "b15474a932adab4ff8a50d9adfa7e4e926f21146", | ||
23 | - "_spec": "are-we-there-yet@~1.1.2", | ||
24 | - "_where": "C:\\Users\\bshoo\\Desktop\\OSS\\Singer-Composer\\node_modules\\npmlog", | ||
25 | - "author": { | ||
26 | - "name": "Rebecca Turner", | ||
27 | - "url": "http://re-becca.org" | ||
28 | }, | 12 | }, |
13 | + "author": "Rebecca Turner (http://re-becca.org)", | ||
14 | + "license": "ISC", | ||
29 | "bugs": { | 15 | "bugs": { |
30 | "url": "https://github.com/iarna/are-we-there-yet/issues" | 16 | "url": "https://github.com/iarna/are-we-there-yet/issues" |
31 | }, | 17 | }, |
32 | - "bundleDependencies": false, | 18 | + "homepage": "https://github.com/iarna/are-we-there-yet", |
33 | - "dependencies": { | ||
34 | - "delegates": "^1.0.0", | ||
35 | - "readable-stream": "^2.0.6" | ||
36 | - }, | ||
37 | - "deprecated": false, | ||
38 | - "description": "Keep track of the overall completion of many disparate processes", | ||
39 | "devDependencies": { | 19 | "devDependencies": { |
40 | "standard": "^11.0.1", | 20 | "standard": "^11.0.1", |
41 | "tap": "^12.0.1" | 21 | "tap": "^12.0.1" |
42 | }, | 22 | }, |
23 | + "dependencies": { | ||
24 | + "delegates": "^1.0.0", | ||
25 | + "readable-stream": "^2.0.6" | ||
26 | + }, | ||
43 | "files": [ | 27 | "files": [ |
44 | "index.js", | 28 | "index.js", |
45 | "tracker-base.js", | 29 | "tracker-base.js", |
... | @@ -47,17 +31,5 @@ | ... | @@ -47,17 +31,5 @@ |
47 | "tracker-stream.js", | 31 | "tracker-stream.js", |
48 | "tracker.js", | 32 | "tracker.js", |
49 | "CHANGES.md" | 33 | "CHANGES.md" |
50 | - ], | 34 | + ] |
51 | - "homepage": "https://github.com/iarna/are-we-there-yet", | ||
52 | - "license": "ISC", | ||
53 | - "main": "index.js", | ||
54 | - "name": "are-we-there-yet", | ||
55 | - "repository": { | ||
56 | - "type": "git", | ||
57 | - "url": "git+https://github.com/iarna/are-we-there-yet.git" | ||
58 | - }, | ||
59 | - "scripts": { | ||
60 | - "test": "standard && tap test/*.js" | ||
61 | - }, | ||
62 | - "version": "1.1.7" | ||
63 | } | 35 | } | ... | ... |
node_modules/are-we-there-yet/tracker-base.js
100644 → 100755
File mode changed
node_modules/are-we-there-yet/tracker-group.js
100644 → 100755
File mode changed
node_modules/are-we-there-yet/tracker-stream.js
100644 → 100755
File mode changed
node_modules/are-we-there-yet/tracker.js
100644 → 100755
File mode changed
node_modules/array-equal/.npmignore
100644 → 100755
File mode changed
node_modules/array-equal/LICENSE
100644 → 100755
File mode changed
node_modules/array-equal/README.md
100644 → 100755
File mode changed
node_modules/array-equal/component.json
100644 → 100755
File mode changed
node_modules/array-equal/index.js
100644 → 100755
File mode changed
node_modules/array-equal/package.json
100644 → 100755
File mode changed
node_modules/array-flatten/LICENSE
100644 → 100755
File mode changed
node_modules/array-flatten/README.md
100644 → 100755
File mode changed
node_modules/array-flatten/array-flatten.js
100644 → 100755
File mode changed
node_modules/array-flatten/package.json
100644 → 100755
File mode changed
node_modules/array-parallel/.npmignore
100644 → 100755
File mode changed
node_modules/array-parallel/.travis.yml
100644 → 100755
File mode changed
node_modules/array-parallel/README.md
100644 → 100755
File mode changed
node_modules/array-parallel/component.json
100644 → 100755
File mode changed
node_modules/array-parallel/index.js
100644 → 100755
File mode changed
node_modules/array-parallel/package.json
100644 → 100755
File mode changed
node_modules/array-parallel/test.js
100644 → 100755
File mode changed
node_modules/array-series/.npmignore
100644 → 100755
File mode changed
node_modules/array-series/.travis.yml
100644 → 100755
File mode changed
node_modules/array-series/README.md
100644 → 100755
File mode changed
node_modules/array-series/component.json
100644 → 100755
File mode changed
node_modules/array-series/index.js
100644 → 100755
File mode changed
node_modules/array-series/package.json
100644 → 100755
File mode changed
node_modules/array-series/test.js
100644 → 100755
File mode changed
node_modules/arraybuffer.slice/.npmignore
100644 → 100755
File mode changed
node_modules/arraybuffer.slice/LICENCE
100644 → 100755
File mode changed
node_modules/arraybuffer.slice/Makefile
100644 → 100755
File mode changed
node_modules/arraybuffer.slice/README.md
100644 → 100755
File mode changed
node_modules/arraybuffer.slice/index.js
100644 → 100755
File mode changed
node_modules/arraybuffer.slice/package.json
100644 → 100755
File mode changed
node_modules/arraybuffer.slice/test/slice-buffer.js
100644 → 100755
File mode changed
node_modules/asn1/Jenkinsfile
100644 → 100755
File mode changed
node_modules/asn1/LICENSE
100644 → 100755
File mode changed
node_modules/asn1/README.md
100644 → 100755
File mode changed
node_modules/asn1/lib/ber/errors.js
100644 → 100755
File mode changed
node_modules/asn1/lib/ber/index.js
100644 → 100755
File mode changed
node_modules/asn1/lib/ber/reader.js
100644 → 100755
File mode changed
node_modules/asn1/lib/ber/types.js
100644 → 100755
File mode changed
node_modules/asn1/lib/ber/writer.js
100644 → 100755
File mode changed
node_modules/asn1/lib/index.js
100644 → 100755
File mode changed
node_modules/asn1/package.json
100644 → 100755
File mode changed
node_modules/assert-plus/AUTHORS
100644 → 100755
File mode changed
node_modules/assert-plus/CHANGES.md
100644 → 100755
File mode changed
node_modules/assert-plus/README.md
100644 → 100755
File mode changed
node_modules/assert-plus/assert.js
100644 → 100755
File mode changed
node_modules/assert-plus/package.json
100644 → 100755
File mode changed
node_modules/async-limiter/.eslintignore
100644 → 100755
File mode changed
node_modules/async-limiter/.nycrc
100644 → 100755
File mode changed
node_modules/async-limiter/.travis.yml
100644 → 100755
File mode changed
node_modules/async-limiter/LICENSE
100644 → 100755
File mode changed
node_modules/async-limiter/index.js
100644 → 100755
File mode changed
node_modules/async-limiter/package.json
100644 → 100755
File mode changed
node_modules/async-limiter/readme.md
100644 → 100755
File mode changed
node_modules/async/.travis.yml
100644 → 100755
File mode changed
node_modules/async/LICENSE
100644 → 100755
File mode changed
node_modules/async/README.md
100644 → 100755
File mode changed
node_modules/async/bower.json
100644 → 100755
File mode changed
node_modules/async/component.json
100644 → 100755
File mode changed
node_modules/async/lib/async.js
100644 → 100755
File mode changed
node_modules/async/package.json
100644 → 100755
File mode changed
node_modules/async/support/sync-package-managers.js
100644 → 100755
File mode changed
node_modules/asynckit/LICENSE
100644 → 100755
File mode changed
node_modules/asynckit/README.md
100644 → 100755
File mode changed
node_modules/asynckit/bench.js
100644 → 100755
File mode changed
node_modules/asynckit/index.js
100644 → 100755
File mode changed
node_modules/asynckit/lib/abort.js
100644 → 100755
File mode changed
node_modules/asynckit/lib/async.js
100644 → 100755
File mode changed
node_modules/asynckit/lib/defer.js
100644 → 100755
File mode changed
node_modules/asynckit/lib/iterate.js
100644 → 100755
File mode changed
node_modules/asynckit/lib/readable_asynckit.js
100644 → 100755
File mode changed
node_modules/asynckit/lib/readable_parallel.js
100644 → 100755
File mode changed
node_modules/asynckit/lib/readable_serial.js
100644 → 100755
File mode changed
node_modules/asynckit/lib/readable_serial_ordered.js
100644 → 100755
File mode changed
node_modules/asynckit/lib/state.js
100644 → 100755
File mode changed
node_modules/asynckit/lib/streamify.js
100644 → 100755
File mode changed
node_modules/asynckit/lib/terminator.js
100644 → 100755
File mode changed
node_modules/asynckit/package.json
100644 → 100755
File mode changed
node_modules/asynckit/parallel.js
100644 → 100755
File mode changed
node_modules/asynckit/serial.js
100644 → 100755
File mode changed
node_modules/asynckit/serialOrdered.js
100644 → 100755
File mode changed
node_modules/asynckit/stream.js
100644 → 100755
File mode changed
node_modules/aws-sign2/LICENSE
100644 → 100755
File mode changed
node_modules/aws-sign2/README.md
100644 → 100755
File mode changed
node_modules/aws-sign2/index.js
100644 → 100755
File mode changed
node_modules/aws-sign2/package.json
100644 → 100755
File mode changed
node_modules/aws4/.github/FUNDING.yml
100644 → 100755
File mode changed
node_modules/aws4/.travis.yml
100644 → 100755
File mode changed
node_modules/aws4/LICENSE
100644 → 100755
File mode changed
node_modules/aws4/README.md
100644 → 100755
File mode changed
node_modules/aws4/aws4.js
100644 → 100755
File mode changed
node_modules/aws4/lru.js
100644 → 100755
File mode changed
node_modules/aws4/package.json
100644 → 100755
File mode changed
node_modules/backo2/.npmignore
100644 → 100755
File mode changed
node_modules/backo2/History.md
100644 → 100755
File mode changed
node_modules/backo2/Makefile
100644 → 100755
File mode changed
node_modules/backo2/Readme.md
100644 → 100755
File mode changed
node_modules/backo2/component.json
100644 → 100755
File mode changed
node_modules/backo2/index.js
100644 → 100755
File mode changed
node_modules/backo2/package.json
100644 → 100755
File mode changed
node_modules/backo2/test/index.js
100644 → 100755
File mode changed
node_modules/balanced-match/.github/FUNDING.yml
100644 → 100755
File mode changed
node_modules/balanced-match/LICENSE.md
100644 → 100755
File mode changed
node_modules/balanced-match/README.md
100644 → 100755
File mode changed
node_modules/balanced-match/index.js
100644 → 100755
File mode changed
node_modules/balanced-match/package.json
100644 → 100755
File mode changed
node_modules/base64-arraybuffer/.npmignore
100644 → 100755
File mode changed
node_modules/base64-arraybuffer/.travis.yml
100644 → 100755
File mode changed
node_modules/base64-arraybuffer/LICENSE-MIT
100644 → 100755
File mode changed
node_modules/base64-arraybuffer/README.md
100644 → 100755
File mode changed
node_modules/base64-arraybuffer/lib/base64-arraybuffer.js
100644 → 100755
File mode changed
node_modules/base64-arraybuffer/package.json
100644 → 100755
File mode changed
node_modules/base64-js/LICENSE
100644 → 100755
File mode changed
node_modules/base64-js/README.md
100644 → 100755
File mode changed
node_modules/base64-js/base64js.min.js
100644 → 100755
File mode changed
node_modules/base64-js/index.d.ts
100644 → 100755
File mode changed
node_modules/base64-js/index.js
100644 → 100755
File mode changed
node_modules/base64-js/package.json
100644 → 100755
File mode changed
node_modules/base64id/.npmignore
100644 → 100755
File mode changed
node_modules/base64id/LICENSE
100644 → 100755
File mode changed
node_modules/base64id/README.md
100644 → 100755
File mode changed
node_modules/base64id/lib/base64id.js
100644 → 100755
File mode changed
node_modules/base64id/package.json
100644 → 100755
File mode changed
node_modules/bcrypt-pbkdf/CONTRIBUTING.md
100644 → 100755
File mode changed
node_modules/bcrypt-pbkdf/LICENSE
100644 → 100755
File mode changed
node_modules/bcrypt-pbkdf/README.md
100644 → 100755
File mode changed
node_modules/bcrypt-pbkdf/index.js
100644 → 100755
File mode changed
node_modules/bcrypt-pbkdf/package.json
100644 → 100755
File mode changed
node_modules/better-assert/.npmignore
100644 → 100755
File mode changed
node_modules/better-assert/History.md
100644 → 100755
File mode changed
node_modules/better-assert/Makefile
100644 → 100755
File mode changed
node_modules/better-assert/Readme.md
100644 → 100755
File mode changed
node_modules/better-assert/example.js
100644 → 100755
File mode changed
node_modules/better-assert/index.js
100644 → 100755
File mode changed
node_modules/better-assert/package.json
100644 → 100755
File mode changed
node_modules/bignumber.js/CHANGELOG.md
100644 → 100755
File mode changed
node_modules/bignumber.js/LICENCE
100644 → 100755
File mode changed
node_modules/bignumber.js/README.md
100644 → 100755
File mode changed
node_modules/bignumber.js/bignumber.d.ts
100644 → 100755
File mode changed
node_modules/bignumber.js/bignumber.js
100644 → 100755
File mode changed
node_modules/bignumber.js/bignumber.min.js
100644 → 100755
File mode changed
node_modules/bignumber.js/bignumber.min.js.map
100644 → 100755
File mode changed
node_modules/bignumber.js/bignumber.mjs
100644 → 100755
File mode changed
node_modules/bignumber.js/doc/API.html
100644 → 100755
File mode changed
node_modules/bignumber.js/package.json
100644 → 100755
File mode changed
node_modules/bl/.travis.yml
100644 → 100755
File mode changed
node_modules/bl/BufferList.js
100644 → 100755
File mode changed
node_modules/bl/LICENSE.md
100644 → 100755
File mode changed
node_modules/bl/README.md
100644 → 100755
File mode changed
node_modules/bl/bl.js
100644 → 100755
File mode changed
node_modules/bl/node_modules/inherits/LICENSE
100644 → 100755
File mode changed
node_modules/bl/node_modules/inherits/README.md
100644 → 100755
File mode changed
node_modules/bl/node_modules/inherits/inherits.js
100644 → 100755
File mode changed
node_modules/bl/node_modules/inherits/inherits_browser.js
100644 → 100755
File mode changed
node_modules/bl/node_modules/inherits/package.json
100644 → 100755
1 | { | 1 | { |
2 | - "_from": "inherits@^2.0.4", | 2 | + "name": "inherits", |
3 | - "_id": "inherits@2.0.4", | ||
4 | - "_inBundle": false, | ||
5 | - "_integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", | ||
6 | - "_location": "/bl/inherits", | ||
7 | - "_phantomChildren": {}, | ||
8 | - "_requested": { | ||
9 | - "type": "range", | ||
10 | - "registry": true, | ||
11 | - "raw": "inherits@^2.0.4", | ||
12 | - "name": "inherits", | ||
13 | - "escapedName": "inherits", | ||
14 | - "rawSpec": "^2.0.4", | ||
15 | - "saveSpec": null, | ||
16 | - "fetchSpec": "^2.0.4" | ||
17 | - }, | ||
18 | - "_requiredBy": [ | ||
19 | - "/bl", | ||
20 | - "/bl/readable-stream" | ||
21 | - ], | ||
22 | - "_resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", | ||
23 | - "_shasum": "0fa2c64f932917c3433a0ded55363aae37416b7c", | ||
24 | - "_spec": "inherits@^2.0.4", | ||
25 | - "_where": "C:\\Users\\bshoo\\Desktop\\OSS\\Singer-Composer\\node_modules\\bl", | ||
26 | - "browser": "./inherits_browser.js", | ||
27 | - "bugs": { | ||
28 | - "url": "https://github.com/isaacs/inherits/issues" | ||
29 | - }, | ||
30 | - "bundleDependencies": false, | ||
31 | - "deprecated": false, | ||
32 | "description": "Browser-friendly inheritance fully compatible with standard node.js inherits()", | 3 | "description": "Browser-friendly inheritance fully compatible with standard node.js inherits()", |
33 | - "devDependencies": { | 4 | + "version": "2.0.4", |
34 | - "tap": "^14.2.4" | ||
35 | - }, | ||
36 | - "files": [ | ||
37 | - "inherits.js", | ||
38 | - "inherits_browser.js" | ||
39 | - ], | ||
40 | - "homepage": "https://github.com/isaacs/inherits#readme", | ||
41 | "keywords": [ | 5 | "keywords": [ |
42 | "inheritance", | 6 | "inheritance", |
43 | "class", | 7 | "class", |
... | @@ -48,15 +12,18 @@ | ... | @@ -48,15 +12,18 @@ |
48 | "browser", | 12 | "browser", |
49 | "browserify" | 13 | "browserify" |
50 | ], | 14 | ], |
51 | - "license": "ISC", | ||
52 | "main": "./inherits.js", | 15 | "main": "./inherits.js", |
53 | - "name": "inherits", | 16 | + "browser": "./inherits_browser.js", |
54 | - "repository": { | 17 | + "repository": "git://github.com/isaacs/inherits", |
55 | - "type": "git", | 18 | + "license": "ISC", |
56 | - "url": "git://github.com/isaacs/inherits.git" | ||
57 | - }, | ||
58 | "scripts": { | 19 | "scripts": { |
59 | "test": "tap" | 20 | "test": "tap" |
60 | }, | 21 | }, |
61 | - "version": "2.0.4" | 22 | + "devDependencies": { |
23 | + "tap": "^14.2.4" | ||
24 | + }, | ||
25 | + "files": [ | ||
26 | + "inherits.js", | ||
27 | + "inherits_browser.js" | ||
28 | + ] | ||
62 | } | 29 | } | ... | ... |
node_modules/bl/node_modules/readable-stream/CONTRIBUTING.md
100644 → 100755
File mode changed
node_modules/bl/node_modules/readable-stream/GOVERNANCE.md
100644 → 100755
File mode changed
node_modules/bl/node_modules/readable-stream/LICENSE
100644 → 100755
File mode changed
node_modules/bl/node_modules/readable-stream/README.md
100644 → 100755
File mode changed
node_modules/bl/node_modules/readable-stream/errors-browser.js
100644 → 100755
File mode changed
node_modules/bl/node_modules/readable-stream/errors.js
100644 → 100755
File mode changed
File mode changed
File mode changed
File mode changed
File mode changed
File mode changed
File mode changed
File mode changed
File mode changed
File mode changed
File mode changed
File mode changed
File mode changed
File mode changed
File mode changed
File mode changed
File mode changed
node_modules/bl/node_modules/readable-stream/package.json
100644 → 100755
1 | { | 1 | { |
2 | - "_from": "readable-stream@^3.4.0", | 2 | + "name": "readable-stream", |
3 | - "_id": "readable-stream@3.6.0", | 3 | + "version": "3.6.0", |
4 | - "_inBundle": false, | 4 | + "description": "Streams3, a user-land copy of the stream library from Node.js", |
5 | - "_integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", | 5 | + "main": "readable.js", |
6 | - "_location": "/bl/readable-stream", | 6 | + "engines": { |
7 | - "_phantomChildren": {}, | 7 | + "node": ">= 6" |
8 | - "_requested": { | ||
9 | - "type": "range", | ||
10 | - "registry": true, | ||
11 | - "raw": "readable-stream@^3.4.0", | ||
12 | - "name": "readable-stream", | ||
13 | - "escapedName": "readable-stream", | ||
14 | - "rawSpec": "^3.4.0", | ||
15 | - "saveSpec": null, | ||
16 | - "fetchSpec": "^3.4.0" | ||
17 | - }, | ||
18 | - "_requiredBy": [ | ||
19 | - "/bl" | ||
20 | - ], | ||
21 | - "_resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", | ||
22 | - "_shasum": "337bbda3adc0706bd3e024426a286d4b4b2c9198", | ||
23 | - "_spec": "readable-stream@^3.4.0", | ||
24 | - "_where": "C:\\Users\\bshoo\\Desktop\\OSS\\Singer-Composer\\node_modules\\bl", | ||
25 | - "browser": { | ||
26 | - "util": false, | ||
27 | - "worker_threads": false, | ||
28 | - "./errors": "./errors-browser.js", | ||
29 | - "./readable.js": "./readable-browser.js", | ||
30 | - "./lib/internal/streams/from.js": "./lib/internal/streams/from-browser.js", | ||
31 | - "./lib/internal/streams/stream.js": "./lib/internal/streams/stream-browser.js" | ||
32 | - }, | ||
33 | - "bugs": { | ||
34 | - "url": "https://github.com/nodejs/readable-stream/issues" | ||
35 | }, | 8 | }, |
36 | - "bundleDependencies": false, | ||
37 | "dependencies": { | 9 | "dependencies": { |
38 | "inherits": "^2.0.3", | 10 | "inherits": "^2.0.3", |
39 | "string_decoder": "^1.1.1", | 11 | "string_decoder": "^1.1.1", |
40 | "util-deprecate": "^1.0.1" | 12 | "util-deprecate": "^1.0.1" |
41 | }, | 13 | }, |
42 | - "deprecated": false, | ||
43 | - "description": "Streams3, a user-land copy of the stream library from Node.js", | ||
44 | "devDependencies": { | 14 | "devDependencies": { |
45 | "@babel/cli": "^7.2.0", | 15 | "@babel/cli": "^7.2.0", |
46 | "@babel/core": "^7.2.0", | 16 | "@babel/core": "^7.2.0", |
... | @@ -63,35 +33,36 @@ | ... | @@ -63,35 +33,36 @@ |
63 | "tar-fs": "^1.16.2", | 33 | "tar-fs": "^1.16.2", |
64 | "util-promisify": "^2.1.0" | 34 | "util-promisify": "^2.1.0" |
65 | }, | 35 | }, |
66 | - "engines": { | 36 | + "scripts": { |
67 | - "node": ">= 6" | 37 | + "test": "tap -J --no-esm test/parallel/*.js test/ours/*.js", |
38 | + "ci": "TAP=1 tap --no-esm test/parallel/*.js test/ours/*.js | tee test.tap", | ||
39 | + "test-browsers": "airtap --sauce-connect --loopback airtap.local -- test/browser.js", | ||
40 | + "test-browser-local": "airtap --open --local -- test/browser.js", | ||
41 | + "cover": "nyc npm test", | ||
42 | + "report": "nyc report --reporter=lcov", | ||
43 | + "update-browser-errors": "babel -o errors-browser.js errors.js" | ||
44 | + }, | ||
45 | + "repository": { | ||
46 | + "type": "git", | ||
47 | + "url": "git://github.com/nodejs/readable-stream" | ||
68 | }, | 48 | }, |
69 | - "homepage": "https://github.com/nodejs/readable-stream#readme", | ||
70 | "keywords": [ | 49 | "keywords": [ |
71 | "readable", | 50 | "readable", |
72 | "stream", | 51 | "stream", |
73 | "pipe" | 52 | "pipe" |
74 | ], | 53 | ], |
75 | - "license": "MIT", | 54 | + "browser": { |
76 | - "main": "readable.js", | 55 | + "util": false, |
77 | - "name": "readable-stream", | 56 | + "worker_threads": false, |
57 | + "./errors": "./errors-browser.js", | ||
58 | + "./readable.js": "./readable-browser.js", | ||
59 | + "./lib/internal/streams/from.js": "./lib/internal/streams/from-browser.js", | ||
60 | + "./lib/internal/streams/stream.js": "./lib/internal/streams/stream-browser.js" | ||
61 | + }, | ||
78 | "nyc": { | 62 | "nyc": { |
79 | "include": [ | 63 | "include": [ |
80 | "lib/**.js" | 64 | "lib/**.js" |
81 | ] | 65 | ] |
82 | }, | 66 | }, |
83 | - "repository": { | 67 | + "license": "MIT" |
84 | - "type": "git", | ||
85 | - "url": "git://github.com/nodejs/readable-stream.git" | ||
86 | - }, | ||
87 | - "scripts": { | ||
88 | - "ci": "TAP=1 tap --no-esm test/parallel/*.js test/ours/*.js | tee test.tap", | ||
89 | - "cover": "nyc npm test", | ||
90 | - "report": "nyc report --reporter=lcov", | ||
91 | - "test": "tap -J --no-esm test/parallel/*.js test/ours/*.js", | ||
92 | - "test-browser-local": "airtap --open --local -- test/browser.js", | ||
93 | - "test-browsers": "airtap --sauce-connect --loopback airtap.local -- test/browser.js", | ||
94 | - "update-browser-errors": "babel -o errors-browser.js errors.js" | ||
95 | - }, | ||
96 | - "version": "3.6.0" | ||
97 | } | 68 | } | ... | ... |
node_modules/bl/node_modules/readable-stream/readable-browser.js
100644 → 100755
File mode changed
node_modules/bl/node_modules/readable-stream/readable.js
100644 → 100755
File mode changed
node_modules/bl/package.json
100644 → 100755
1 | { | 1 | { |
2 | - "_from": "bl@^4.0.3", | 2 | + "name": "bl", |
3 | - "_id": "bl@4.1.0", | 3 | + "version": "4.1.0", |
4 | - "_inBundle": false, | 4 | + "description": "Buffer List: collect buffers and access with a standard readable Buffer interface, streamable too!", |
5 | - "_integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", | 5 | + "license": "MIT", |
6 | - "_location": "/bl", | 6 | + "main": "bl.js", |
7 | - "_phantomChildren": { | 7 | + "scripts": { |
8 | - "string_decoder": "1.1.1", | 8 | + "lint": "standard *.js test/*.js", |
9 | - "util-deprecate": "1.0.2" | 9 | + "test": "npm run lint && node test/test.js | faucet" |
10 | }, | 10 | }, |
11 | - "_requested": { | 11 | + "repository": { |
12 | - "type": "range", | 12 | + "type": "git", |
13 | - "registry": true, | 13 | + "url": "https://github.com/rvagg/bl.git" |
14 | - "raw": "bl@^4.0.3", | ||
15 | - "name": "bl", | ||
16 | - "escapedName": "bl", | ||
17 | - "rawSpec": "^4.0.3", | ||
18 | - "saveSpec": null, | ||
19 | - "fetchSpec": "^4.0.3" | ||
20 | }, | 14 | }, |
21 | - "_requiredBy": [ | 15 | + "homepage": "https://github.com/rvagg/bl", |
22 | - "/tar-stream" | ||
23 | - ], | ||
24 | - "_resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", | ||
25 | - "_shasum": "451535264182bec2fbbc83a62ab98cf11d9f7b3a", | ||
26 | - "_spec": "bl@^4.0.3", | ||
27 | - "_where": "C:\\Users\\bshoo\\Desktop\\OSS\\Singer-Composer\\node_modules\\tar-stream", | ||
28 | "authors": [ | 16 | "authors": [ |
29 | "Rod Vagg <rod@vagg.org> (https://github.com/rvagg)", | 17 | "Rod Vagg <rod@vagg.org> (https://github.com/rvagg)", |
30 | "Matteo Collina <matteo.collina@gmail.com> (https://github.com/mcollina)", | 18 | "Matteo Collina <matteo.collina@gmail.com> (https://github.com/mcollina)", |
31 | "Jarett Cruger <jcrugzz@gmail.com> (https://github.com/jcrugzz)" | 19 | "Jarett Cruger <jcrugzz@gmail.com> (https://github.com/jcrugzz)" |
32 | ], | 20 | ], |
33 | - "bugs": { | 21 | + "keywords": [ |
34 | - "url": "https://github.com/rvagg/bl/issues" | 22 | + "buffer", |
35 | - }, | 23 | + "buffers", |
36 | - "bundleDependencies": false, | 24 | + "stream", |
25 | + "awesomesauce" | ||
26 | + ], | ||
37 | "dependencies": { | 27 | "dependencies": { |
38 | "buffer": "^5.5.0", | 28 | "buffer": "^5.5.0", |
39 | "inherits": "^2.0.4", | 29 | "inherits": "^2.0.4", |
40 | "readable-stream": "^3.4.0" | 30 | "readable-stream": "^3.4.0" |
41 | }, | 31 | }, |
42 | - "deprecated": false, | ||
43 | - "description": "Buffer List: collect buffers and access with a standard readable Buffer interface, streamable too!", | ||
44 | "devDependencies": { | 32 | "devDependencies": { |
45 | "faucet": "~0.0.1", | 33 | "faucet": "~0.0.1", |
46 | "standard": "^14.3.0", | 34 | "standard": "^14.3.0", |
47 | "tape": "^4.11.0" | 35 | "tape": "^4.11.0" |
48 | - }, | 36 | + } |
49 | - "homepage": "https://github.com/rvagg/bl", | ||
50 | - "keywords": [ | ||
51 | - "buffer", | ||
52 | - "buffers", | ||
53 | - "stream", | ||
54 | - "awesomesauce" | ||
55 | - ], | ||
56 | - "license": "MIT", | ||
57 | - "main": "bl.js", | ||
58 | - "name": "bl", | ||
59 | - "repository": { | ||
60 | - "type": "git", | ||
61 | - "url": "git+https://github.com/rvagg/bl.git" | ||
62 | - }, | ||
63 | - "scripts": { | ||
64 | - "lint": "standard *.js test/*.js", | ||
65 | - "test": "npm run lint && node test/test.js | faucet" | ||
66 | - }, | ||
67 | - "version": "4.1.0" | ||
68 | } | 37 | } | ... | ... |
node_modules/bl/test/convert.js
100644 → 100755
File mode changed
node_modules/bl/test/indexOf.js
100644 → 100755
File mode changed
node_modules/bl/test/isBufferList.js
100644 → 100755
File mode changed
node_modules/bl/test/test.js
100644 → 100755
File mode changed
node_modules/blob/.idea/blob.iml
100644 → 100755
File mode changed
node_modules/blob/.idea/inspectionProfiles/profiles_settings.xml
100644 → 100755
File mode changed
node_modules/blob/.idea/markdown-navigator.xml
100644 → 100755
File mode changed
node_modules/blob/.idea/markdown-navigator/profiles_settings.xml
100644 → 100755
File mode changed
node_modules/blob/.idea/modules.xml
100644 → 100755
File mode changed
node_modules/blob/.idea/vcs.xml
100644 → 100755
File mode changed
node_modules/blob/.idea/workspace.xml
100644 → 100755
File mode changed
node_modules/blob/.zuul.yml
100644 → 100755
File mode changed
node_modules/blob/LICENSE
100644 → 100755
File mode changed
node_modules/blob/Makefile
100644 → 100755
File mode changed
node_modules/blob/README.md
100644 → 100755
File mode changed
node_modules/blob/component.json
100644 → 100755
File mode changed
node_modules/blob/index.js
100644 → 100755
File mode changed
node_modules/blob/package.json
100644 → 100755
File mode changed
node_modules/blob/test/index.js
100644 → 100755
File mode changed
node_modules/body-parser/HISTORY.md
100644 → 100755
File mode changed
node_modules/body-parser/LICENSE
100644 → 100755
File mode changed
node_modules/body-parser/README.md
100644 → 100755
File mode changed
node_modules/body-parser/index.js
100644 → 100755
File mode changed
node_modules/body-parser/lib/read.js
100644 → 100755
File mode changed
node_modules/body-parser/lib/types/json.js
100644 → 100755
File mode changed
node_modules/body-parser/lib/types/raw.js
100644 → 100755
File mode changed
node_modules/body-parser/lib/types/text.js
100644 → 100755
File mode changed
node_modules/body-parser/lib/types/urlencoded.js
100644 → 100755
File mode changed
node_modules/body-parser/package.json
100644 → 100755
File mode changed
node_modules/brace-expansion/LICENSE
100644 → 100755
File mode changed
node_modules/brace-expansion/README.md
100644 → 100755
File mode changed
node_modules/brace-expansion/index.js
100644 → 100755
File mode changed
node_modules/brace-expansion/package.json
100644 → 100755
File mode changed
node_modules/browser-process-hrtime/LICENSE
100644 → 100755
File mode changed
node_modules/browser-process-hrtime/README.md
100644 → 100755
File mode changed
node_modules/browser-process-hrtime/index.d.ts
100644 → 100755
File mode changed
node_modules/browser-process-hrtime/index.js
100644 → 100755
File mode changed
node_modules/browser-process-hrtime/package.json
100644 → 100755
File mode changed
node_modules/buffer-from/LICENSE
100644 → 100755
File mode changed
node_modules/buffer-from/index.js
100644 → 100755
File mode changed
node_modules/buffer-from/package.json
100644 → 100755
File mode changed
node_modules/buffer-from/readme.md
100644 → 100755
File mode changed
node_modules/buffer/AUTHORS.md
100644 → 100755
File mode changed
node_modules/buffer/LICENSE
100644 → 100755
File mode changed
node_modules/buffer/README.md
100644 → 100755
File mode changed
node_modules/buffer/index.d.ts
100644 → 100755
File mode changed
node_modules/buffer/index.js
100644 → 100755
File mode changed
node_modules/buffer/package.json
100644 → 100755
File mode changed
node_modules/busboy/.travis.yml
100644 → 100755
File mode changed
node_modules/busboy/LICENSE
100644 → 100755
File mode changed
node_modules/busboy/README.md
100644 → 100755
File mode changed
node_modules/busboy/deps/encoding/encoding-indexes.js
100644 → 100755
File mode changed
node_modules/busboy/deps/encoding/encoding.js
100644 → 100755
File mode changed
node_modules/busboy/lib/main.js
100644 → 100755
File mode changed
node_modules/busboy/lib/types/multipart.js
100644 → 100755
File mode changed
node_modules/busboy/lib/types/urlencoded.js
100644 → 100755
File mode changed
node_modules/busboy/lib/utils.js
100644 → 100755
File mode changed
node_modules/busboy/node_modules/isarray/README.md
100644 → 100755
File mode changed
node_modules/busboy/node_modules/isarray/build/build.js
100644 → 100755
File mode changed
node_modules/busboy/node_modules/isarray/component.json
100644 → 100755
File mode changed
node_modules/busboy/node_modules/isarray/index.js
100644 → 100755
File mode changed
node_modules/busboy/node_modules/isarray/package.json
100644 → 100755
File mode changed
node_modules/busboy/node_modules/readable-stream/.npmignore
100644 → 100755
File mode changed
node_modules/busboy/node_modules/readable-stream/LICENSE
100644 → 100755
File mode changed
node_modules/busboy/node_modules/readable-stream/README.md
100644 → 100755
File mode changed
node_modules/busboy/node_modules/readable-stream/duplex.js
100644 → 100755
File mode changed
node_modules/busboy/node_modules/readable-stream/float.patch
100644 → 100755
File mode changed
File mode changed
File mode changed
File mode changed
File mode changed
File mode changed
node_modules/busboy/node_modules/readable-stream/package.json
100644 → 100755
File mode changed
node_modules/busboy/node_modules/readable-stream/passthrough.js
100644 → 100755
File mode changed
node_modules/busboy/node_modules/readable-stream/readable.js
100644 → 100755
File mode changed
node_modules/busboy/node_modules/readable-stream/transform.js
100644 → 100755
File mode changed
node_modules/busboy/node_modules/readable-stream/writable.js
100644 → 100755
File mode changed
node_modules/busboy/node_modules/string_decoder/.npmignore
100644 → 100755
File mode changed
node_modules/busboy/node_modules/string_decoder/LICENSE
100644 → 100755
File mode changed
node_modules/busboy/node_modules/string_decoder/README.md
100644 → 100755
File mode changed
node_modules/busboy/node_modules/string_decoder/index.js
100644 → 100755
File mode changed
node_modules/busboy/node_modules/string_decoder/package.json
100644 → 100755
File mode changed
node_modules/busboy/package.json
100644 → 100755
File mode changed
node_modules/busboy/test/test-types-multipart.js
100644 → 100755
File mode changed
node_modules/busboy/test/test-types-urlencoded.js
100644 → 100755
File mode changed
node_modules/busboy/test/test-utils-decoder.js
100644 → 100755
File mode changed
node_modules/busboy/test/test-utils-parse-params.js
100644 → 100755
File mode changed
node_modules/busboy/test/test.js
100644 → 100755
File mode changed
node_modules/bytes/History.md
100644 → 100755
File mode changed
node_modules/bytes/LICENSE
100644 → 100755
File mode changed
node_modules/bytes/Readme.md
100644 → 100755
File mode changed
node_modules/bytes/index.js
100644 → 100755
File mode changed
node_modules/bytes/package.json
100644 → 100755
File mode changed
node_modules/callsite/.npmignore
100644 → 100755
File mode changed
node_modules/callsite/History.md
100644 → 100755
File mode changed
node_modules/callsite/Makefile
100644 → 100755
File mode changed
node_modules/callsite/Readme.md
100644 → 100755
File mode changed
node_modules/callsite/index.js
100644 → 100755
File mode changed
node_modules/callsite/package.json
100644 → 100755
File mode changed
node_modules/caseless/LICENSE
100644 → 100755
File mode changed
node_modules/caseless/README.md
100644 → 100755
File mode changed
node_modules/caseless/index.js
100644 → 100755
File mode changed
node_modules/caseless/package.json
100644 → 100755
File mode changed
node_modules/caseless/test.js
100644 → 100755
File mode changed
node_modules/chalk/index.js
100644 → 100755
File mode changed
node_modules/chalk/index.js.flow
100644 → 100755
File mode changed
node_modules/chalk/license
100644 → 100755
File mode changed
node_modules/chalk/package.json
100644 → 100755
File mode changed
node_modules/chalk/readme.md
100644 → 100755
File mode changed
node_modules/chalk/templates.js
100644 → 100755
File mode changed
node_modules/chalk/types/index.d.ts
100644 → 100755
File mode changed
node_modules/chownr/LICENSE
100644 → 100755
File mode changed
node_modules/chownr/README.md
100644 → 100755
File mode changed
node_modules/chownr/chownr.js
100644 → 100755
File mode changed
node_modules/chownr/package.json
100644 → 100755
1 | { | 1 | { |
2 | - "_from": "chownr@^1.1.1", | 2 | + "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)", |
3 | - "_id": "chownr@1.1.4", | 3 | + "name": "chownr", |
4 | - "_inBundle": false, | 4 | + "description": "like `chown -R`", |
5 | - "_integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", | 5 | + "version": "1.1.4", |
6 | - "_location": "/chownr", | 6 | + "repository": { |
7 | - "_phantomChildren": {}, | 7 | + "type": "git", |
8 | - "_requested": { | 8 | + "url": "git://github.com/isaacs/chownr.git" |
9 | - "type": "range", | ||
10 | - "registry": true, | ||
11 | - "raw": "chownr@^1.1.1", | ||
12 | - "name": "chownr", | ||
13 | - "escapedName": "chownr", | ||
14 | - "rawSpec": "^1.1.1", | ||
15 | - "saveSpec": null, | ||
16 | - "fetchSpec": "^1.1.1" | ||
17 | }, | 9 | }, |
18 | - "_requiredBy": [ | 10 | + "main": "chownr.js", |
19 | - "/tar-fs" | 11 | + "files": [ |
12 | + "chownr.js" | ||
20 | ], | 13 | ], |
21 | - "_resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", | ||
22 | - "_shasum": "6fc9d7b42d32a583596337666e7d08084da2cc6b", | ||
23 | - "_spec": "chownr@^1.1.1", | ||
24 | - "_where": "C:\\Users\\bshoo\\Desktop\\OSS\\Singer-Composer\\node_modules\\tar-fs", | ||
25 | - "author": { | ||
26 | - "name": "Isaac Z. Schlueter", | ||
27 | - "email": "i@izs.me", | ||
28 | - "url": "http://blog.izs.me/" | ||
29 | - }, | ||
30 | - "bugs": { | ||
31 | - "url": "https://github.com/isaacs/chownr/issues" | ||
32 | - }, | ||
33 | - "bundleDependencies": false, | ||
34 | - "deprecated": false, | ||
35 | - "description": "like `chown -R`", | ||
36 | "devDependencies": { | 14 | "devDependencies": { |
37 | "mkdirp": "0.3", | 15 | "mkdirp": "0.3", |
38 | "rimraf": "^2.7.1", | 16 | "rimraf": "^2.7.1", |
39 | "tap": "^14.10.6" | 17 | "tap": "^14.10.6" |
40 | }, | 18 | }, |
41 | - "files": [ | 19 | + "tap": { |
42 | - "chownr.js" | 20 | + "check-coverage": true |
43 | - ], | ||
44 | - "homepage": "https://github.com/isaacs/chownr#readme", | ||
45 | - "license": "ISC", | ||
46 | - "main": "chownr.js", | ||
47 | - "name": "chownr", | ||
48 | - "repository": { | ||
49 | - "type": "git", | ||
50 | - "url": "git://github.com/isaacs/chownr.git" | ||
51 | }, | 21 | }, |
52 | "scripts": { | 22 | "scripts": { |
53 | - "postversion": "npm publish", | 23 | + "test": "tap", |
54 | - "prepublishOnly": "git push origin --follow-tags", | ||
55 | "preversion": "npm test", | 24 | "preversion": "npm test", |
56 | - "test": "tap" | 25 | + "postversion": "npm publish", |
57 | - }, | 26 | + "prepublishOnly": "git push origin --follow-tags" |
58 | - "tap": { | ||
59 | - "check-coverage": true | ||
60 | }, | 27 | }, |
61 | - "version": "1.1.4" | 28 | + "license": "ISC" |
62 | } | 29 | } | ... | ... |
node_modules/code-point-at/index.js
100644 → 100755
File mode changed
node_modules/code-point-at/license
100644 → 100755
File mode changed
node_modules/code-point-at/package.json
100644 → 100755
1 | { | 1 | { |
2 | - "_from": "code-point-at@^1.0.0", | 2 | + "name": "code-point-at", |
3 | - "_id": "code-point-at@1.1.0", | 3 | + "version": "1.1.0", |
4 | - "_inBundle": false, | 4 | + "description": "ES2015 `String#codePointAt()` ponyfill", |
5 | - "_integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", | 5 | + "license": "MIT", |
6 | - "_location": "/code-point-at", | 6 | + "repository": "sindresorhus/code-point-at", |
7 | - "_phantomChildren": {}, | ||
8 | - "_requested": { | ||
9 | - "type": "range", | ||
10 | - "registry": true, | ||
11 | - "raw": "code-point-at@^1.0.0", | ||
12 | - "name": "code-point-at", | ||
13 | - "escapedName": "code-point-at", | ||
14 | - "rawSpec": "^1.0.0", | ||
15 | - "saveSpec": null, | ||
16 | - "fetchSpec": "^1.0.0" | ||
17 | - }, | ||
18 | - "_requiredBy": [ | ||
19 | - "/string-width" | ||
20 | - ], | ||
21 | - "_resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", | ||
22 | - "_shasum": "0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77", | ||
23 | - "_spec": "code-point-at@^1.0.0", | ||
24 | - "_where": "C:\\Users\\bshoo\\Desktop\\OSS\\Singer-Composer\\node_modules\\string-width", | ||
25 | "author": { | 7 | "author": { |
26 | "name": "Sindre Sorhus", | 8 | "name": "Sindre Sorhus", |
27 | "email": "sindresorhus@gmail.com", | 9 | "email": "sindresorhus@gmail.com", |
28 | "url": "sindresorhus.com" | 10 | "url": "sindresorhus.com" |
29 | }, | 11 | }, |
30 | - "bugs": { | ||
31 | - "url": "https://github.com/sindresorhus/code-point-at/issues" | ||
32 | - }, | ||
33 | - "bundleDependencies": false, | ||
34 | - "deprecated": false, | ||
35 | - "description": "ES2015 `String#codePointAt()` ponyfill", | ||
36 | - "devDependencies": { | ||
37 | - "ava": "*", | ||
38 | - "xo": "^0.16.0" | ||
39 | - }, | ||
40 | "engines": { | 12 | "engines": { |
41 | "node": ">=0.10.0" | 13 | "node": ">=0.10.0" |
42 | }, | 14 | }, |
15 | + "scripts": { | ||
16 | + "test": "xo && ava" | ||
17 | + }, | ||
43 | "files": [ | 18 | "files": [ |
44 | "index.js" | 19 | "index.js" |
45 | ], | 20 | ], |
46 | - "homepage": "https://github.com/sindresorhus/code-point-at#readme", | ||
47 | "keywords": [ | 21 | "keywords": [ |
48 | "es2015", | 22 | "es2015", |
49 | "ponyfill", | 23 | "ponyfill", |
... | @@ -57,14 +31,8 @@ | ... | @@ -57,14 +31,8 @@ |
57 | "codepoint", | 31 | "codepoint", |
58 | "unicode" | 32 | "unicode" |
59 | ], | 33 | ], |
60 | - "license": "MIT", | 34 | + "devDependencies": { |
61 | - "name": "code-point-at", | 35 | + "ava": "*", |
62 | - "repository": { | 36 | + "xo": "^0.16.0" |
63 | - "type": "git", | 37 | + } |
64 | - "url": "git+https://github.com/sindresorhus/code-point-at.git" | ||
65 | - }, | ||
66 | - "scripts": { | ||
67 | - "test": "xo && ava" | ||
68 | - }, | ||
69 | - "version": "1.1.0" | ||
70 | } | 38 | } | ... | ... |
node_modules/code-point-at/readme.md
100644 → 100755
File mode changed
node_modules/color-convert/CHANGELOG.md
100644 → 100755
File mode changed
node_modules/color-convert/LICENSE
100644 → 100755
File mode changed
node_modules/color-convert/README.md
100644 → 100755
File mode changed
node_modules/color-convert/conversions.js
100644 → 100755
File mode changed
node_modules/color-convert/index.js
100644 → 100755
File mode changed
node_modules/color-convert/package.json
100644 → 100755
File mode changed
node_modules/color-convert/route.js
100644 → 100755
File mode changed
node_modules/color-name/.eslintrc.json
100644 → 100755
File mode changed
node_modules/color-name/.npmignore
100644 → 100755
File mode changed
node_modules/color-name/LICENSE
100644 → 100755
File mode changed
node_modules/color-name/README.md
100644 → 100755
File mode changed
node_modules/color-name/index.js
100644 → 100755
File mode changed
node_modules/color-name/package.json
100644 → 100755
File mode changed
node_modules/color-name/test.js
100644 → 100755
File mode changed
1 | -# 0.4.0 | ||
2 | - | ||
3 | -- Changed: Invalid conversions now return `null` instead of `undefined` | ||
4 | -- Changed: Moved to XO standard | ||
5 | -- Fixed: a few details in package.json | ||
6 | -- Fixed: readme output regarding wrapped hue values ([#21](https://github.com/MoOx/color-string/pull/21)) | ||
7 | - | ||
8 | -# 0.3.0 | ||
9 | - | ||
10 | -- Fixed: HSL alpha channel ([#16](https://github.com/harthur/color-string/pull/16)) | ||
11 | -- Fixed: ability to parse signed number ([#15](https://github.com/harthur/color-string/pull/15)) | ||
12 | -- Removed: component.json | ||
13 | -- Removed: browser build | ||
14 | -- Added: license field to package.json ([#17](https://github.com/harthur/color-string/pull/17)) | ||
15 | - | ||
16 | ---- | ||
17 | - | ||
18 | -Check out commit logs for earlier releases |
node_modules/color-string/LICENSE
100644 → 100755
File mode changed
node_modules/color-string/README.md
100644 → 100755
1 | # color-string | 1 | # color-string |
2 | 2 | ||
3 | -[![Build Status](https://travis-ci.org/Qix-/color-string.svg?branch=master)](https://travis-ci.org/Qix-/color-string) | ||
4 | - | ||
5 | > library for parsing and generating CSS color strings. | 3 | > library for parsing and generating CSS color strings. |
6 | 4 | ||
7 | ## Install | 5 | ## Install |
... | @@ -27,7 +25,10 @@ colorString.get('hwb(60, 3%, 60%)') // {model: 'hwb', value: [60, 3 | ... | @@ -27,7 +25,10 @@ colorString.get('hwb(60, 3%, 60%)') // {model: 'hwb', value: [60, 3 |
27 | colorString.get.rgb('#FFF') // [255, 255, 255, 1] | 25 | colorString.get.rgb('#FFF') // [255, 255, 255, 1] |
28 | colorString.get.rgb('blue') // [0, 0, 255, 1] | 26 | colorString.get.rgb('blue') // [0, 0, 255, 1] |
29 | colorString.get.rgb('rgba(200, 60, 60, 0.3)') // [200, 60, 60, 0.3] | 27 | colorString.get.rgb('rgba(200, 60, 60, 0.3)') // [200, 60, 60, 0.3] |
28 | +colorString.get.rgb('rgba(200 60 60 / 0.3)') // [200, 60, 60, 0.3] | ||
29 | +colorString.get.rgb('rgba(200 60 60 / 30%)') // [200, 60, 60, 0.3] | ||
30 | colorString.get.rgb('rgb(200, 200, 200)') // [200, 200, 200, 1] | 30 | colorString.get.rgb('rgb(200, 200, 200)') // [200, 200, 200, 1] |
31 | +colorString.get.rgb('rgb(200 200 200)') // [200, 200, 200, 1] | ||
31 | 32 | ||
32 | colorString.get.hsl('hsl(360, 100%, 50%)') // [0, 100, 50, 1] | 33 | colorString.get.hsl('hsl(360, 100%, 50%)') // [0, 100, 50, 1] |
33 | colorString.get.hsl('hsl(360 100% 50%)') // [0, 100, 50, 1] | 34 | colorString.get.hsl('hsl(360 100% 50%)') // [0, 100, 50, 1] | ... | ... |
node_modules/color-string/index.js
100644 → 100755
1 | /* MIT license */ | 1 | /* MIT license */ |
2 | var colorNames = require('color-name'); | 2 | var colorNames = require('color-name'); |
3 | var swizzle = require('simple-swizzle'); | 3 | var swizzle = require('simple-swizzle'); |
4 | +var hasOwnProperty = Object.hasOwnProperty; | ||
4 | 5 | ||
5 | var reverseNames = {}; | 6 | var reverseNames = {}; |
6 | 7 | ||
7 | // create a list of reverse color names | 8 | // create a list of reverse color names |
8 | for (var name in colorNames) { | 9 | for (var name in colorNames) { |
9 | - if (colorNames.hasOwnProperty(name)) { | 10 | + if (hasOwnProperty.call(colorNames, name)) { |
10 | reverseNames[colorNames[name]] = name; | 11 | reverseNames[colorNames[name]] = name; |
11 | } | 12 | } |
12 | } | 13 | } |
... | @@ -49,9 +50,9 @@ cs.get.rgb = function (string) { | ... | @@ -49,9 +50,9 @@ cs.get.rgb = function (string) { |
49 | 50 | ||
50 | var abbr = /^#([a-f0-9]{3,4})$/i; | 51 | var abbr = /^#([a-f0-9]{3,4})$/i; |
51 | var hex = /^#([a-f0-9]{6})([a-f0-9]{2})?$/i; | 52 | var hex = /^#([a-f0-9]{6})([a-f0-9]{2})?$/i; |
52 | - var rgba = /^rgba?\(\s*([+-]?\d+)\s*,\s*([+-]?\d+)\s*,\s*([+-]?\d+)\s*(?:,\s*([+-]?[\d\.]+)\s*)?\)$/; | 53 | + var rgba = /^rgba?\(\s*([+-]?\d+)\s*,?\s*([+-]?\d+)\s*,?\s*([+-]?\d+)\s*(?:[,|\/]\s*([+-]?[\d\.]+)(%?)\s*)?\)$/; |
53 | - var per = /^rgba?\(\s*([+-]?[\d\.]+)\%\s*,\s*([+-]?[\d\.]+)\%\s*,\s*([+-]?[\d\.]+)\%\s*(?:,\s*([+-]?[\d\.]+)\s*)?\)$/; | 54 | + var per = /^rgba?\(\s*([+-]?[\d\.]+)\%\s*,?\s*([+-]?[\d\.]+)\%\s*,?\s*([+-]?[\d\.]+)\%\s*(?:[,|\/]\s*([+-]?[\d\.]+)(%?)\s*)?\)$/; |
54 | - var keyword = /(\D+)/; | 55 | + var keyword = /(\w+)/; |
55 | 56 | ||
56 | var rgb = [0, 0, 0, 1]; | 57 | var rgb = [0, 0, 0, 1]; |
57 | var match; | 58 | var match; |
... | @@ -88,7 +89,11 @@ cs.get.rgb = function (string) { | ... | @@ -88,7 +89,11 @@ cs.get.rgb = function (string) { |
88 | } | 89 | } |
89 | 90 | ||
90 | if (match[4]) { | 91 | if (match[4]) { |
91 | - rgb[3] = parseFloat(match[4]); | 92 | + if (match[5]) { |
93 | + rgb[3] = parseInt(match[4], 0) * 0.01; | ||
94 | + } else { | ||
95 | + rgb[3] = parseFloat(match[4]); | ||
96 | + } | ||
92 | } | 97 | } |
93 | } else if (match = string.match(per)) { | 98 | } else if (match = string.match(per)) { |
94 | for (i = 0; i < 3; i++) { | 99 | for (i = 0; i < 3; i++) { |
... | @@ -96,19 +101,22 @@ cs.get.rgb = function (string) { | ... | @@ -96,19 +101,22 @@ cs.get.rgb = function (string) { |
96 | } | 101 | } |
97 | 102 | ||
98 | if (match[4]) { | 103 | if (match[4]) { |
99 | - rgb[3] = parseFloat(match[4]); | 104 | + if (match[5]) { |
105 | + rgb[3] = parseInt(match[4], 0) * 0.01; | ||
106 | + } else { | ||
107 | + rgb[3] = parseFloat(match[4]); | ||
108 | + } | ||
100 | } | 109 | } |
101 | } else if (match = string.match(keyword)) { | 110 | } else if (match = string.match(keyword)) { |
102 | if (match[1] === 'transparent') { | 111 | if (match[1] === 'transparent') { |
103 | return [0, 0, 0, 0]; | 112 | return [0, 0, 0, 0]; |
104 | } | 113 | } |
105 | 114 | ||
106 | - rgb = colorNames[match[1]]; | 115 | + if (!hasOwnProperty.call(colorNames, match[1])) { |
107 | - | ||
108 | - if (!rgb) { | ||
109 | return null; | 116 | return null; |
110 | } | 117 | } |
111 | 118 | ||
119 | + rgb = colorNames[match[1]]; | ||
112 | rgb[3] = 1; | 120 | rgb[3] = 1; |
113 | 121 | ||
114 | return rgb; | 122 | return rgb; |
... | @@ -134,7 +142,7 @@ cs.get.hsl = function (string) { | ... | @@ -134,7 +142,7 @@ cs.get.hsl = function (string) { |
134 | 142 | ||
135 | if (match) { | 143 | if (match) { |
136 | var alpha = parseFloat(match[4]); | 144 | var alpha = parseFloat(match[4]); |
137 | - var h = (parseFloat(match[1]) + 360) % 360; | 145 | + var h = ((parseFloat(match[1]) % 360) + 360) % 360; |
138 | var s = clamp(parseFloat(match[2]), 0, 100); | 146 | var s = clamp(parseFloat(match[2]), 0, 100); |
139 | var l = clamp(parseFloat(match[3]), 0, 100); | 147 | var l = clamp(parseFloat(match[3]), 0, 100); |
140 | var a = clamp(isNaN(alpha) ? 1 : alpha, 0, 1); | 148 | var a = clamp(isNaN(alpha) ? 1 : alpha, 0, 1); |
... | @@ -229,6 +237,6 @@ function clamp(num, min, max) { | ... | @@ -229,6 +237,6 @@ function clamp(num, min, max) { |
229 | } | 237 | } |
230 | 238 | ||
231 | function hexDouble(num) { | 239 | function hexDouble(num) { |
232 | - var str = num.toString(16).toUpperCase(); | 240 | + var str = Math.round(num).toString(16).toUpperCase(); |
233 | return (str.length < 2) ? '0' + str : str; | 241 | return (str.length < 2) ? '0' + str : str; |
234 | } | 242 | } | ... | ... |
node_modules/color-string/package.json
100644 → 100755
1 | { | 1 | { |
2 | - "_from": "color-string@^1.6.0", | 2 | + "name": "color-string", |
3 | - "_id": "color-string@1.6.0", | 3 | + "description": "Parser and generator for CSS color strings", |
4 | - "_inBundle": false, | 4 | + "version": "1.7.4", |
5 | - "_integrity": "sha512-c/hGS+kRWJutUBEngKKmk4iH3sD59MBkoxVapS/0wgpCz2u7XsNloxknyvBhzwEs1IbV36D9PwqLPJ2DTu3vMA==", | 5 | + "author": "Heather Arthur <fayearthur@gmail.com>", |
6 | - "_location": "/color-string", | 6 | + "contributors": [ |
7 | - "_phantomChildren": {}, | 7 | + "Maxime Thirouin", |
8 | - "_requested": { | 8 | + "Dyma Ywanov <dfcreative@gmail.com>", |
9 | - "type": "range", | 9 | + "Josh Junon" |
10 | - "registry": true, | ||
11 | - "raw": "color-string@^1.6.0", | ||
12 | - "name": "color-string", | ||
13 | - "escapedName": "color-string", | ||
14 | - "rawSpec": "^1.6.0", | ||
15 | - "saveSpec": null, | ||
16 | - "fetchSpec": "^1.6.0" | ||
17 | - }, | ||
18 | - "_requiredBy": [ | ||
19 | - "/color" | ||
20 | ], | 10 | ], |
21 | - "_resolved": "https://registry.npmjs.org/color-string/-/color-string-1.6.0.tgz", | 11 | + "repository": "Qix-/color-string", |
22 | - "_shasum": "c3915f61fe267672cb7e1e064c9d692219f6c312", | 12 | + "scripts": { |
23 | - "_spec": "color-string@^1.6.0", | 13 | + "pretest": "xo", |
24 | - "_where": "C:\\Users\\bshoo\\Desktop\\OSS\\Singer-Composer\\node_modules\\color", | 14 | + "test": "node test/basic.js" |
25 | - "author": { | ||
26 | - "name": "Heather Arthur", | ||
27 | - "email": "fayearthur@gmail.com" | ||
28 | - }, | ||
29 | - "bugs": { | ||
30 | - "url": "https://github.com/Qix-/color-string/issues" | ||
31 | }, | 15 | }, |
32 | - "bundleDependencies": false, | 16 | + "license": "MIT", |
33 | - "contributors": [ | 17 | + "files": [ |
34 | - { | 18 | + "index.js" |
35 | - "name": "Maxime Thirouin" | ||
36 | - }, | ||
37 | - { | ||
38 | - "name": "Dyma Ywanov", | ||
39 | - "email": "dfcreative@gmail.com" | ||
40 | - }, | ||
41 | - { | ||
42 | - "name": "Josh Junon" | ||
43 | - } | ||
44 | ], | 19 | ], |
20 | + "xo": { | ||
21 | + "rules": { | ||
22 | + "no-cond-assign": 0, | ||
23 | + "operator-linebreak": 0 | ||
24 | + } | ||
25 | + }, | ||
45 | "dependencies": { | 26 | "dependencies": { |
46 | "color-name": "^1.0.0", | 27 | "color-name": "^1.0.0", |
47 | "simple-swizzle": "^0.2.2" | 28 | "simple-swizzle": "^0.2.2" |
48 | }, | 29 | }, |
49 | - "deprecated": false, | ||
50 | - "description": "Parser and generator for CSS color strings", | ||
51 | "devDependencies": { | 30 | "devDependencies": { |
52 | "xo": "^0.12.1" | 31 | "xo": "^0.12.1" |
53 | }, | 32 | }, |
54 | - "files": [ | ||
55 | - "index.js" | ||
56 | - ], | ||
57 | - "homepage": "https://github.com/Qix-/color-string#readme", | ||
58 | "keywords": [ | 33 | "keywords": [ |
59 | "color", | 34 | "color", |
60 | "colour", | 35 | "colour", |
61 | "rgb", | 36 | "rgb", |
62 | "css" | 37 | "css" |
63 | - ], | 38 | + ] |
64 | - "license": "MIT", | ||
65 | - "name": "color-string", | ||
66 | - "repository": { | ||
67 | - "type": "git", | ||
68 | - "url": "git+https://github.com/Qix-/color-string.git" | ||
69 | - }, | ||
70 | - "scripts": { | ||
71 | - "pretest": "xo", | ||
72 | - "test": "node test/basic.js" | ||
73 | - }, | ||
74 | - "version": "1.6.0", | ||
75 | - "xo": { | ||
76 | - "rules": { | ||
77 | - "no-cond-assign": 0, | ||
78 | - "operator-linebreak": 0 | ||
79 | - } | ||
80 | - } | ||
81 | } | 39 | } | ... | ... |
node_modules/color/LICENSE
100644 → 100755
File mode changed
node_modules/color/README.md
100644 → 100755
1 | -# color [![Build Status](https://travis-ci.org/Qix-/color.svg?branch=master)](https://travis-ci.org/Qix-/color) | 1 | +# color |
2 | 2 | ||
3 | > JavaScript library for immutable color conversion and manipulation with support for CSS color strings. | 3 | > JavaScript library for immutable color conversion and manipulation with support for CSS color strings. |
4 | 4 | ... | ... |
node_modules/color/index.js
100644 → 100755
File mode changed
node_modules/color/node_modules/color-convert/CHANGELOG.md
100644 → 100755
File mode changed
node_modules/color/node_modules/color-convert/LICENSE
100644 → 100755
File mode changed
node_modules/color/node_modules/color-convert/README.md
100644 → 100755
File mode changed
node_modules/color/node_modules/color-convert/conversions.js
100644 → 100755
File mode changed
node_modules/color/node_modules/color-convert/index.js
100644 → 100755
File mode changed
node_modules/color/node_modules/color-convert/package.json
100644 → 100755
1 | { | 1 | { |
2 | - "_from": "color-convert@^2.0.1", | 2 | + "name": "color-convert", |
3 | - "_id": "color-convert@2.0.1", | ||
4 | - "_inBundle": false, | ||
5 | - "_integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", | ||
6 | - "_location": "/color/color-convert", | ||
7 | - "_phantomChildren": {}, | ||
8 | - "_requested": { | ||
9 | - "type": "range", | ||
10 | - "registry": true, | ||
11 | - "raw": "color-convert@^2.0.1", | ||
12 | - "name": "color-convert", | ||
13 | - "escapedName": "color-convert", | ||
14 | - "rawSpec": "^2.0.1", | ||
15 | - "saveSpec": null, | ||
16 | - "fetchSpec": "^2.0.1" | ||
17 | - }, | ||
18 | - "_requiredBy": [ | ||
19 | - "/color" | ||
20 | - ], | ||
21 | - "_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", | ||
22 | - "_shasum": "72d3a68d598c9bdb3af2ad1e84f21d896abd4de3", | ||
23 | - "_spec": "color-convert@^2.0.1", | ||
24 | - "_where": "C:\\Users\\bshoo\\Desktop\\OSS\\Singer-Composer\\node_modules\\color", | ||
25 | - "author": { | ||
26 | - "name": "Heather Arthur", | ||
27 | - "email": "fayearthur@gmail.com" | ||
28 | - }, | ||
29 | - "bugs": { | ||
30 | - "url": "https://github.com/Qix-/color-convert/issues" | ||
31 | - }, | ||
32 | - "bundleDependencies": false, | ||
33 | - "dependencies": { | ||
34 | - "color-name": "~1.1.4" | ||
35 | - }, | ||
36 | - "deprecated": false, | ||
37 | "description": "Plain color conversion functions", | 3 | "description": "Plain color conversion functions", |
38 | - "devDependencies": { | 4 | + "version": "2.0.1", |
39 | - "chalk": "^2.4.2", | 5 | + "author": "Heather Arthur <fayearthur@gmail.com>", |
40 | - "xo": "^0.24.0" | 6 | + "license": "MIT", |
7 | + "repository": "Qix-/color-convert", | ||
8 | + "scripts": { | ||
9 | + "pretest": "xo", | ||
10 | + "test": "node test/basic.js" | ||
41 | }, | 11 | }, |
42 | "engines": { | 12 | "engines": { |
43 | "node": ">=7.0.0" | 13 | "node": ">=7.0.0" |
44 | }, | 14 | }, |
45 | - "files": [ | ||
46 | - "index.js", | ||
47 | - "conversions.js", | ||
48 | - "route.js" | ||
49 | - ], | ||
50 | - "homepage": "https://github.com/Qix-/color-convert#readme", | ||
51 | "keywords": [ | 15 | "keywords": [ |
52 | "color", | 16 | "color", |
53 | "colour", | 17 | "colour", |
... | @@ -62,22 +26,23 @@ | ... | @@ -62,22 +26,23 @@ |
62 | "ansi", | 26 | "ansi", |
63 | "ansi16" | 27 | "ansi16" |
64 | ], | 28 | ], |
65 | - "license": "MIT", | 29 | + "files": [ |
66 | - "name": "color-convert", | 30 | + "index.js", |
67 | - "repository": { | 31 | + "conversions.js", |
68 | - "type": "git", | 32 | + "route.js" |
69 | - "url": "git+https://github.com/Qix-/color-convert.git" | 33 | + ], |
70 | - }, | ||
71 | - "scripts": { | ||
72 | - "pretest": "xo", | ||
73 | - "test": "node test/basic.js" | ||
74 | - }, | ||
75 | - "version": "2.0.1", | ||
76 | "xo": { | 34 | "xo": { |
77 | "rules": { | 35 | "rules": { |
78 | "default-case": 0, | 36 | "default-case": 0, |
79 | "no-inline-comments": 0, | 37 | "no-inline-comments": 0, |
80 | "operator-linebreak": 0 | 38 | "operator-linebreak": 0 |
81 | } | 39 | } |
40 | + }, | ||
41 | + "devDependencies": { | ||
42 | + "chalk": "^2.4.2", | ||
43 | + "xo": "^0.24.0" | ||
44 | + }, | ||
45 | + "dependencies": { | ||
46 | + "color-name": "~1.1.4" | ||
82 | } | 47 | } |
83 | } | 48 | } | ... | ... |
node_modules/color/node_modules/color-convert/route.js
100644 → 100755
File mode changed
node_modules/color/node_modules/color-name/LICENSE
100644 → 100755
File mode changed
node_modules/color/node_modules/color-name/README.md
100644 → 100755
File mode changed
node_modules/color/node_modules/color-name/index.js
100644 → 100755
File mode changed
node_modules/color/node_modules/color-name/package.json
100644 → 100755
1 | { | 1 | { |
2 | - "_from": "color-name@~1.1.4", | 2 | + "name": "color-name", |
3 | - "_id": "color-name@1.1.4", | 3 | + "version": "1.1.4", |
4 | - "_inBundle": false, | ||
5 | - "_integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", | ||
6 | - "_location": "/color/color-name", | ||
7 | - "_phantomChildren": {}, | ||
8 | - "_requested": { | ||
9 | - "type": "range", | ||
10 | - "registry": true, | ||
11 | - "raw": "color-name@~1.1.4", | ||
12 | - "name": "color-name", | ||
13 | - "escapedName": "color-name", | ||
14 | - "rawSpec": "~1.1.4", | ||
15 | - "saveSpec": null, | ||
16 | - "fetchSpec": "~1.1.4" | ||
17 | - }, | ||
18 | - "_requiredBy": [ | ||
19 | - "/color/color-convert" | ||
20 | - ], | ||
21 | - "_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", | ||
22 | - "_shasum": "c2a09a87acbde69543de6f63fa3995c826c536a2", | ||
23 | - "_spec": "color-name@~1.1.4", | ||
24 | - "_where": "C:\\Users\\bshoo\\Desktop\\OSS\\Singer-Composer\\node_modules\\color\\node_modules\\color-convert", | ||
25 | - "author": { | ||
26 | - "name": "DY", | ||
27 | - "email": "dfcreative@gmail.com" | ||
28 | - }, | ||
29 | - "bugs": { | ||
30 | - "url": "https://github.com/colorjs/color-name/issues" | ||
31 | - }, | ||
32 | - "bundleDependencies": false, | ||
33 | - "deprecated": false, | ||
34 | "description": "A list of color names and its values", | 4 | "description": "A list of color names and its values", |
5 | + "main": "index.js", | ||
35 | "files": [ | 6 | "files": [ |
36 | "index.js" | 7 | "index.js" |
37 | ], | 8 | ], |
38 | - "homepage": "https://github.com/colorjs/color-name", | 9 | + "scripts": { |
10 | + "test": "node test.js" | ||
11 | + }, | ||
12 | + "repository": { | ||
13 | + "type": "git", | ||
14 | + "url": "git@github.com:colorjs/color-name.git" | ||
15 | + }, | ||
39 | "keywords": [ | 16 | "keywords": [ |
40 | "color-name", | 17 | "color-name", |
41 | "color", | 18 | "color", |
42 | "color-keyword", | 19 | "color-keyword", |
43 | "keyword" | 20 | "keyword" |
44 | ], | 21 | ], |
22 | + "author": "DY <dfcreative@gmail.com>", | ||
45 | "license": "MIT", | 23 | "license": "MIT", |
46 | - "main": "index.js", | 24 | + "bugs": { |
47 | - "name": "color-name", | 25 | + "url": "https://github.com/colorjs/color-name/issues" |
48 | - "repository": { | ||
49 | - "type": "git", | ||
50 | - "url": "git+ssh://git@github.com/colorjs/color-name.git" | ||
51 | - }, | ||
52 | - "scripts": { | ||
53 | - "test": "node test.js" | ||
54 | }, | 26 | }, |
55 | - "version": "1.1.4" | 27 | + "homepage": "https://github.com/colorjs/color-name" |
56 | } | 28 | } | ... | ... |
node_modules/color/package.json
100644 → 100755
1 | { | 1 | { |
2 | - "_from": "color@^4.0.1", | 2 | + "name": "color", |
3 | - "_id": "color@4.0.1", | 3 | + "version": "4.0.2", |
4 | - "_inBundle": false, | ||
5 | - "_integrity": "sha512-rpZjOKN5O7naJxkH2Rx1sZzzBgaiWECc6BYXjeCE6kF0kcASJYbUq02u7JqIHwCb/j3NhV+QhRL2683aICeGZA==", | ||
6 | - "_location": "/color", | ||
7 | - "_phantomChildren": {}, | ||
8 | - "_requested": { | ||
9 | - "type": "range", | ||
10 | - "registry": true, | ||
11 | - "raw": "color@^4.0.1", | ||
12 | - "name": "color", | ||
13 | - "escapedName": "color", | ||
14 | - "rawSpec": "^4.0.1", | ||
15 | - "saveSpec": null, | ||
16 | - "fetchSpec": "^4.0.1" | ||
17 | - }, | ||
18 | - "_requiredBy": [ | ||
19 | - "/sharp" | ||
20 | - ], | ||
21 | - "_resolved": "https://registry.npmjs.org/color/-/color-4.0.1.tgz", | ||
22 | - "_shasum": "21df44cd10245a91b1ccf5ba031609b0e10e7d67", | ||
23 | - "_spec": "color@^4.0.1", | ||
24 | - "_where": "C:\\Users\\bshoo\\Desktop\\OSS\\Singer-Composer\\node_modules\\sharp", | ||
25 | - "authors": [ | ||
26 | - "Josh Junon <josh@junon.me>", | ||
27 | - "Heather Arthur <fayearthur@gmail.com>", | ||
28 | - "Maxime Thirouin" | ||
29 | - ], | ||
30 | - "bugs": { | ||
31 | - "url": "https://github.com/Qix-/color/issues" | ||
32 | - }, | ||
33 | - "bundleDependencies": false, | ||
34 | - "dependencies": { | ||
35 | - "color-convert": "^2.0.1", | ||
36 | - "color-string": "^1.6.0" | ||
37 | - }, | ||
38 | - "deprecated": false, | ||
39 | "description": "Color conversion and manipulation with CSS string support", | 4 | "description": "Color conversion and manipulation with CSS string support", |
40 | - "devDependencies": { | ||
41 | - "mocha": "9.0.2", | ||
42 | - "xo": "0.42.0" | ||
43 | - }, | ||
44 | - "files": [ | ||
45 | - "LICENSE", | ||
46 | - "index.js" | ||
47 | - ], | ||
48 | - "homepage": "https://github.com/Qix-/color#readme", | ||
49 | "keywords": [ | 5 | "keywords": [ |
50 | "color", | 6 | "color", |
51 | "colour", | 7 | "colour", |
52 | "css" | 8 | "css" |
53 | ], | 9 | ], |
10 | + "authors": [ | ||
11 | + "Josh Junon <josh@junon.me>", | ||
12 | + "Heather Arthur <fayearthur@gmail.com>", | ||
13 | + "Maxime Thirouin" | ||
14 | + ], | ||
54 | "license": "MIT", | 15 | "license": "MIT", |
55 | - "name": "color", | 16 | + "repository": "Qix-/color", |
56 | - "repository": { | ||
57 | - "type": "git", | ||
58 | - "url": "git+https://github.com/Qix-/color.git" | ||
59 | - }, | ||
60 | - "scripts": { | ||
61 | - "pretest": "xo", | ||
62 | - "test": "mocha" | ||
63 | - }, | ||
64 | - "version": "4.0.1", | ||
65 | "xo": { | 17 | "xo": { |
66 | "rules": { | 18 | "rules": { |
67 | "no-cond-assign": 0, | 19 | "no-cond-assign": 0, |
... | @@ -70,5 +22,21 @@ | ... | @@ -70,5 +22,21 @@ |
70 | "no-mixed-operators": 0, | 22 | "no-mixed-operators": 0, |
71 | "complexity": 0 | 23 | "complexity": 0 |
72 | } | 24 | } |
25 | + }, | ||
26 | + "files": [ | ||
27 | + "LICENSE", | ||
28 | + "index.js" | ||
29 | + ], | ||
30 | + "scripts": { | ||
31 | + "pretest": "xo", | ||
32 | + "test": "mocha" | ||
33 | + }, | ||
34 | + "dependencies": { | ||
35 | + "color-convert": "^2.0.1", | ||
36 | + "color-string": "^1.7.4" | ||
37 | + }, | ||
38 | + "devDependencies": { | ||
39 | + "mocha": "9.0.2", | ||
40 | + "xo": "0.42.0" | ||
73 | } | 41 | } |
74 | } | 42 | } | ... | ... |
node_modules/combined-stream/License
100644 → 100755
File mode changed
node_modules/combined-stream/Readme.md
100644 → 100755
File mode changed
node_modules/combined-stream/lib/combined_stream.js
100644 → 100755
File mode changed
node_modules/combined-stream/package.json
100644 → 100755
File mode changed
node_modules/combined-stream/yarn.lock
100644 → 100755
File mode changed
node_modules/component-bind/.npmignore
100644 → 100755
File mode changed
node_modules/component-bind/History.md
100644 → 100755
File mode changed
node_modules/component-bind/Makefile
100644 → 100755
File mode changed
node_modules/component-bind/Readme.md
100644 → 100755
File mode changed
node_modules/component-bind/component.json
100644 → 100755
File mode changed
node_modules/component-bind/index.js
100644 → 100755
File mode changed
node_modules/component-bind/package.json
100644 → 100755
File mode changed
node_modules/component-emitter/History.md
100644 → 100755
File mode changed
node_modules/component-emitter/LICENSE
100644 → 100755
File mode changed
node_modules/component-emitter/Readme.md
100644 → 100755
File mode changed
node_modules/component-emitter/index.js
100644 → 100755
File mode changed
node_modules/component-emitter/package.json
100644 → 100755
File mode changed
node_modules/component-inherit/.npmignore
100644 → 100755
File mode changed
node_modules/component-inherit/History.md
100644 → 100755
File mode changed
node_modules/component-inherit/Makefile
100644 → 100755
File mode changed
node_modules/component-inherit/Readme.md
100644 → 100755
File mode changed
node_modules/component-inherit/component.json
100644 → 100755
File mode changed
node_modules/component-inherit/index.js
100644 → 100755
File mode changed
node_modules/component-inherit/package.json
100644 → 100755
File mode changed
node_modules/component-inherit/test/inherit.js
100644 → 100755
File mode changed
node_modules/concat-map/.travis.yml
100644 → 100755
File mode changed
node_modules/concat-map/LICENSE
100644 → 100755
File mode changed
node_modules/concat-map/README.markdown
100644 → 100755
File mode changed
node_modules/concat-map/example/map.js
100644 → 100755
File mode changed
node_modules/concat-map/index.js
100644 → 100755
File mode changed
node_modules/concat-map/package.json
100644 → 100755
File mode changed
node_modules/concat-map/test/map.js
100644 → 100755
File mode changed
node_modules/concat-stream/LICENSE
100644 → 100755
File mode changed
node_modules/concat-stream/index.js
100644 → 100755
File mode changed
node_modules/concat-stream/package.json
100644 → 100755
File mode changed
node_modules/concat-stream/readme.md
100644 → 100755
File mode changed
node_modules/connect-flash/.travis.yml
100644 → 100755
File mode changed
node_modules/connect-flash/LICENSE
100644 → 100755
File mode changed
node_modules/connect-flash/README.md
100644 → 100755
File mode changed
node_modules/connect-flash/lib/flash.js
100644 → 100755
File mode changed
node_modules/connect-flash/lib/index.js
100644 → 100755
File mode changed
node_modules/connect-flash/package.json
100644 → 100755
File mode changed
node_modules/console-control-strings/LICENSE
100644 → 100755
File mode changed
node_modules/console-control-strings/README.md
100644 → 100755
File mode changed
node_modules/console-control-strings/README.md~
100644 → 100755
File mode changed
node_modules/console-control-strings/index.js
100644 → 100755
File mode changed
node_modules/console-control-strings/package.json
100644 → 100755
1 | { | 1 | { |
2 | - "_from": "console-control-strings@~1.1.0", | 2 | + "name": "console-control-strings", |
3 | - "_id": "console-control-strings@1.1.0", | 3 | + "version": "1.1.0", |
4 | - "_inBundle": false, | ||
5 | - "_integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", | ||
6 | - "_location": "/console-control-strings", | ||
7 | - "_phantomChildren": {}, | ||
8 | - "_requested": { | ||
9 | - "type": "range", | ||
10 | - "registry": true, | ||
11 | - "raw": "console-control-strings@~1.1.0", | ||
12 | - "name": "console-control-strings", | ||
13 | - "escapedName": "console-control-strings", | ||
14 | - "rawSpec": "~1.1.0", | ||
15 | - "saveSpec": null, | ||
16 | - "fetchSpec": "~1.1.0" | ||
17 | - }, | ||
18 | - "_requiredBy": [ | ||
19 | - "/gauge", | ||
20 | - "/npmlog" | ||
21 | - ], | ||
22 | - "_resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", | ||
23 | - "_shasum": "3d7cf4464db6446ea644bf4b39507f9851008e8e", | ||
24 | - "_spec": "console-control-strings@~1.1.0", | ||
25 | - "_where": "C:\\Users\\bshoo\\Desktop\\OSS\\Singer-Composer\\node_modules\\npmlog", | ||
26 | - "author": { | ||
27 | - "name": "Rebecca Turner", | ||
28 | - "email": "me@re-becca.org", | ||
29 | - "url": "http://re-becca.org/" | ||
30 | - }, | ||
31 | - "bugs": { | ||
32 | - "url": "https://github.com/iarna/console-control-strings/issues" | ||
33 | - }, | ||
34 | - "bundleDependencies": false, | ||
35 | - "deprecated": false, | ||
36 | "description": "A library of cross-platform tested terminal/console command strings for doing things like color and cursor positioning. This is a subset of both ansi and vt100. All control codes included work on both Windows & Unix-like OSes, except where noted.", | 4 | "description": "A library of cross-platform tested terminal/console command strings for doing things like color and cursor positioning. This is a subset of both ansi and vt100. All control codes included work on both Windows & Unix-like OSes, except where noted.", |
37 | - "devDependencies": { | 5 | + "main": "index.js", |
38 | - "standard": "^7.1.2", | ||
39 | - "tap": "^5.7.2" | ||
40 | - }, | ||
41 | "directories": { | 6 | "directories": { |
42 | "test": "test" | 7 | "test": "test" |
43 | }, | 8 | }, |
9 | + "scripts": { | ||
10 | + "test": "standard && tap test/*.js" | ||
11 | + }, | ||
12 | + "repository": { | ||
13 | + "type": "git", | ||
14 | + "url": "https://github.com/iarna/console-control-strings" | ||
15 | + }, | ||
16 | + "keywords": [], | ||
17 | + "author": "Rebecca Turner <me@re-becca.org> (http://re-becca.org/)", | ||
18 | + "license": "ISC", | ||
44 | "files": [ | 19 | "files": [ |
45 | "LICENSE", | 20 | "LICENSE", |
46 | "index.js" | 21 | "index.js" |
47 | ], | 22 | ], |
48 | - "homepage": "https://github.com/iarna/console-control-strings#readme", | 23 | + "devDependencies": { |
49 | - "keywords": [], | 24 | + "standard": "^7.1.2", |
50 | - "license": "ISC", | 25 | + "tap": "^5.7.2" |
51 | - "main": "index.js", | 26 | + } |
52 | - "name": "console-control-strings", | ||
53 | - "repository": { | ||
54 | - "type": "git", | ||
55 | - "url": "git+https://github.com/iarna/console-control-strings.git" | ||
56 | - }, | ||
57 | - "scripts": { | ||
58 | - "test": "standard && tap test/*.js" | ||
59 | - }, | ||
60 | - "version": "1.1.0" | ||
61 | } | 27 | } | ... | ... |
node_modules/content-disposition/HISTORY.md
100644 → 100755
File mode changed
node_modules/content-disposition/LICENSE
100644 → 100755
File mode changed
node_modules/content-disposition/README.md
100644 → 100755
File mode changed
node_modules/content-disposition/index.js
100644 → 100755
File mode changed
node_modules/content-disposition/package.json
100644 → 100755
File mode changed
node_modules/content-type/HISTORY.md
100644 → 100755
File mode changed
node_modules/content-type/LICENSE
100644 → 100755
File mode changed
node_modules/content-type/README.md
100644 → 100755
File mode changed
node_modules/content-type/index.js
100644 → 100755
File mode changed
node_modules/content-type/package.json
100644 → 100755
File mode changed
node_modules/cookie-parser/HISTORY.md
100644 → 100755
File mode changed
node_modules/cookie-parser/LICENSE
100644 → 100755
File mode changed
node_modules/cookie-parser/README.md
100644 → 100755
File mode changed
node_modules/cookie-parser/index.js
100644 → 100755
File mode changed
node_modules/cookie-parser/lib/parse.js
100644 → 100755
File mode changed
node_modules/cookie-parser/node_modules/cookie/LICENSE
100644 → 100755
File mode changed
node_modules/cookie-parser/node_modules/cookie/README.md
100644 → 100755
File mode changed
node_modules/cookie-parser/node_modules/cookie/index.js
100644 → 100755
File mode changed
node_modules/cookie-parser/node_modules/cookie/package.json
100644 → 100755
File mode changed
node_modules/cookie-parser/package.json
100644 → 100755
File mode changed
node_modules/cookie-signature/.npmignore
100644 → 100755
File mode changed
node_modules/cookie-signature/History.md
100644 → 100755
File mode changed
node_modules/cookie-signature/Readme.md
100644 → 100755
File mode changed
node_modules/cookie-signature/index.js
100644 → 100755
File mode changed
node_modules/cookie-signature/package.json
100644 → 100755
File mode changed
node_modules/cookie/HISTORY.md
100644 → 100755
File mode changed
node_modules/cookie/LICENSE
100644 → 100755
File mode changed
node_modules/cookie/README.md
100644 → 100755
File mode changed
node_modules/cookie/index.js
100644 → 100755
File mode changed
node_modules/cookie/package.json
100644 → 100755
File mode changed
node_modules/core-util-is/LICENSE
100644 → 100755
File mode changed
node_modules/core-util-is/README.md
100644 → 100755
File mode changed
node_modules/core-util-is/float.patch
100644 → 100755
File mode changed
node_modules/core-util-is/lib/util.js
100644 → 100755
File mode changed
node_modules/core-util-is/package.json
100644 → 100755
File mode changed
node_modules/core-util-is/test.js
100644 → 100755
File mode changed
node_modules/crc/.eslintrc.js
100644 → 100755
File mode changed
node_modules/crc/.prettierrc.js
100644 → 100755
File mode changed
node_modules/crc/LICENSE
100644 → 100755
File mode changed
node_modules/crc/README.md
100644 → 100755
File mode changed
node_modules/crc/crc1.js
100644 → 100755
File mode changed
node_modules/crc/crc16.js
100644 → 100755
File mode changed
node_modules/crc/crc16ccitt.js
100644 → 100755
File mode changed
node_modules/crc/crc16kermit.js
100644 → 100755
File mode changed
node_modules/crc/crc16modbus.js
100644 → 100755
File mode changed
node_modules/crc/crc16xmodem.js
100644 → 100755
File mode changed
node_modules/crc/crc17ccitt.js
100644 → 100755
File mode changed
node_modules/crc/crc17kermit.js
100644 → 100755
File mode changed
node_modules/crc/crc17modbus.js
100644 → 100755
File mode changed
node_modules/crc/crc17xmodem.js
100644 → 100755
File mode changed
node_modules/crc/crc24.js
100644 → 100755
File mode changed
node_modules/crc/crc32.js
100644 → 100755
File mode changed
node_modules/crc/crc8.js
100644 → 100755
File mode changed
node_modules/crc/crc81wire.js
100644 → 100755
File mode changed
node_modules/crc/crc91wire.js
100644 → 100755
File mode changed
node_modules/crc/crcjam.js
100644 → 100755
File mode changed
node_modules/crc/create_buffer.js
100644 → 100755
File mode changed
node_modules/crc/define_crc.js
100644 → 100755
File mode changed
node_modules/crc/index.js
100644 → 100755
File mode changed
node_modules/crc/lib/crc1.js
100644 → 100755
File mode changed
node_modules/crc/lib/crc16.js
100644 → 100755
File mode changed
node_modules/crc/lib/crc16_ccitt.js
100644 → 100755
File mode changed
node_modules/crc/lib/crc16_kermit.js
100644 → 100755
File mode changed
node_modules/crc/lib/crc16_modbus.js
100644 → 100755
File mode changed
node_modules/crc/lib/crc16_xmodem.js
100644 → 100755
File mode changed
node_modules/crc/lib/crc17_ccitt.js
100644 → 100755
File mode changed
node_modules/crc/lib/crc17_kermit.js
100644 → 100755
File mode changed
node_modules/crc/lib/crc17_modbus.js
100644 → 100755
File mode changed
node_modules/crc/lib/crc17_xmodem.js
100644 → 100755
File mode changed
node_modules/crc/lib/crc24.js
100644 → 100755
File mode changed
node_modules/crc/lib/crc32.js
100644 → 100755
File mode changed
node_modules/crc/lib/crc8.js
100644 → 100755
File mode changed
node_modules/crc/lib/crc8_1wire.js
100644 → 100755
File mode changed
node_modules/crc/lib/crc9_1wire.js
100644 → 100755
File mode changed
node_modules/crc/lib/crcjam.js
100644 → 100755
File mode changed
node_modules/crc/lib/es6/crc1.js
100644 → 100755
File mode changed
node_modules/crc/lib/es6/crc16.js
100644 → 100755
File mode changed
node_modules/crc/lib/es6/crc16ccitt.js
100644 → 100755
File mode changed
node_modules/crc/lib/es6/crc16kermit.js
100644 → 100755
File mode changed
node_modules/crc/lib/es6/crc16modbus.js
100644 → 100755
File mode changed
node_modules/crc/lib/es6/crc16xmodem.js
100644 → 100755
File mode changed
node_modules/crc/lib/es6/crc17ccitt.js
100644 → 100755
File mode changed
node_modules/crc/lib/es6/crc17kermit.js
100644 → 100755
File mode changed
node_modules/crc/lib/es6/crc17modbus.js
100644 → 100755
File mode changed
node_modules/crc/lib/es6/crc17xmodem.js
100644 → 100755
File mode changed
node_modules/crc/lib/es6/crc24.js
100644 → 100755
File mode changed
node_modules/crc/lib/es6/crc32.js
100644 → 100755
File mode changed
node_modules/crc/lib/es6/crc8.js
100644 → 100755
File mode changed
node_modules/crc/lib/es6/crc81wire.js
100644 → 100755
File mode changed
node_modules/crc/lib/es6/crc91wire.js
100644 → 100755
File mode changed
node_modules/crc/lib/es6/crcjam.js
100644 → 100755
File mode changed
node_modules/crc/lib/es6/create_buffer.js
100644 → 100755
File mode changed
node_modules/crc/lib/es6/define_crc.js
100644 → 100755
File mode changed
node_modules/crc/lib/es6/index.js
100644 → 100755
File mode changed
node_modules/crc/lib/index.js
100644 → 100755
File mode changed
node_modules/crc/package.json
100644 → 100755
File mode changed
node_modules/cross-spawn/LICENSE
100644 → 100755
File mode changed
node_modules/cross-spawn/README.md
100644 → 100755
File mode changed
node_modules/cross-spawn/index.js
100644 → 100755
File mode changed
node_modules/cross-spawn/lib/enoent.js
100644 → 100755
File mode changed
node_modules/cross-spawn/lib/hasBrokenSpawn.js
100644 → 100755
File mode changed
node_modules/cross-spawn/lib/parse.js
100644 → 100755
File mode changed
node_modules/cross-spawn/lib/resolveCommand.js
100644 → 100755
File mode changed
node_modules/cross-spawn/package.json
100644 → 100755
File mode changed
node_modules/cssom/LICENSE.txt
100644 → 100755
File mode changed
node_modules/cssom/README.mdown
100644 → 100755
File mode changed
node_modules/cssom/lib/CSSConditionRule.js
100644 → 100755
File mode changed
node_modules/cssom/lib/CSSDocumentRule.js
100644 → 100755
File mode changed
node_modules/cssom/lib/CSSFontFaceRule.js
100644 → 100755
File mode changed
node_modules/cssom/lib/CSSGroupingRule.js
100644 → 100755
File mode changed
node_modules/cssom/lib/CSSHostRule.js
100644 → 100755
File mode changed
node_modules/cssom/lib/CSSImportRule.js
100644 → 100755
File mode changed
node_modules/cssom/lib/CSSKeyframeRule.js
100644 → 100755
File mode changed
node_modules/cssom/lib/CSSKeyframesRule.js
100644 → 100755
File mode changed
node_modules/cssom/lib/CSSMediaRule.js
100644 → 100755
File mode changed
node_modules/cssom/lib/CSSOM.js
100644 → 100755
File mode changed
node_modules/cssom/lib/CSSRule.js
100644 → 100755
File mode changed
node_modules/cssom/lib/CSSStyleDeclaration.js
100644 → 100755
File mode changed
node_modules/cssom/lib/CSSStyleRule.js
100644 → 100755
File mode changed
node_modules/cssom/lib/CSSStyleSheet.js
100644 → 100755
File mode changed
node_modules/cssom/lib/CSSSupportsRule.js
100644 → 100755
File mode changed
node_modules/cssom/lib/CSSValue.js
100644 → 100755
File mode changed
node_modules/cssom/lib/CSSValueExpression.js
100644 → 100755
File mode changed
node_modules/cssom/lib/MatcherList.js
100644 → 100755
File mode changed
node_modules/cssom/lib/MediaList.js
100644 → 100755
File mode changed
node_modules/cssom/lib/StyleSheet.js
100644 → 100755
File mode changed
node_modules/cssom/lib/clone.js
100644 → 100755
File mode changed
node_modules/cssom/lib/index.js
100644 → 100755
File mode changed
node_modules/cssom/lib/parse.js
100644 → 100755
File mode changed
node_modules/cssom/package.json
100644 → 100755
File mode changed
node_modules/cssstyle/LICENSE
100644 → 100755
File mode changed
node_modules/cssstyle/README.md
100644 → 100755
File mode changed
node_modules/cssstyle/lib/CSSStyleDeclaration.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/CSSStyleDeclaration.test.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/allExtraProperties.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/allProperties.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/allWebkitProperties.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/constants.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/implementedProperties.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/named_colors.json
100644 → 100755
File mode changed
node_modules/cssstyle/lib/parsers.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/parsers.test.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/azimuth.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/background.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/backgroundAttachment.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/backgroundColor.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/backgroundImage.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/backgroundPosition.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/backgroundRepeat.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/border.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/borderBottom.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/borderBottomColor.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/borderBottomStyle.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/borderBottomWidth.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/borderCollapse.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/borderColor.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/borderLeft.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/borderLeftColor.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/borderLeftStyle.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/borderLeftWidth.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/borderRight.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/borderRightColor.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/borderRightStyle.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/borderRightWidth.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/borderSpacing.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/borderStyle.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/borderTop.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/borderTopColor.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/borderTopStyle.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/borderTopWidth.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/borderWidth.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/bottom.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/clear.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/clip.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/color.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/cssFloat.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/flex.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/flexBasis.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/flexGrow.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/flexShrink.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/float.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/floodColor.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/font.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/fontFamily.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/fontSize.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/fontStyle.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/fontVariant.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/fontWeight.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/height.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/left.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/lightingColor.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/lineHeight.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/margin.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/marginBottom.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/marginLeft.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/marginRight.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/marginTop.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/opacity.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/outlineColor.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/padding.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/paddingBottom.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/paddingLeft.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/paddingRight.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/paddingTop.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/right.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/stopColor.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/textLineThroughColor.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/textOverlineColor.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/textUnderlineColor.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/top.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/webkitBorderAfterColor.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/webkitBorderBeforeColor.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/webkitBorderEndColor.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/webkitBorderStartColor.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/webkitColumnRuleColor.js
100644 → 100755
File mode changed
File mode changed
node_modules/cssstyle/lib/properties/webkitTapHighlightColor.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/webkitTextEmphasisColor.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/webkitTextFillColor.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/webkitTextStrokeColor.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/properties/width.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/utils/colorSpace.js
100644 → 100755
File mode changed
node_modules/cssstyle/lib/utils/getBasicPropertyDescriptor.js
100644 → 100755
File mode changed
node_modules/cssstyle/node_modules/cssom/LICENSE.txt
100644 → 100755
File mode changed
node_modules/cssstyle/node_modules/cssom/README.mdown
100644 → 100755
File mode changed
node_modules/cssstyle/node_modules/cssom/lib/CSSDocumentRule.js
100644 → 100755
File mode changed
node_modules/cssstyle/node_modules/cssom/lib/CSSFontFaceRule.js
100644 → 100755
File mode changed
node_modules/cssstyle/node_modules/cssom/lib/CSSHostRule.js
100644 → 100755
File mode changed
node_modules/cssstyle/node_modules/cssom/lib/CSSImportRule.js
100644 → 100755
File mode changed
node_modules/cssstyle/node_modules/cssom/lib/CSSKeyframeRule.js
100644 → 100755
File mode changed
node_modules/cssstyle/node_modules/cssom/lib/CSSKeyframesRule.js
100644 → 100755
File mode changed
node_modules/cssstyle/node_modules/cssom/lib/CSSMediaRule.js
100644 → 100755
File mode changed
node_modules/cssstyle/node_modules/cssom/lib/CSSOM.js
100644 → 100755
File mode changed
node_modules/cssstyle/node_modules/cssom/lib/CSSRule.js
100644 → 100755
File mode changed
File mode changed
node_modules/cssstyle/node_modules/cssom/lib/CSSStyleRule.js
100644 → 100755
File mode changed
node_modules/cssstyle/node_modules/cssom/lib/CSSStyleSheet.js
100644 → 100755
File mode changed
node_modules/cssstyle/node_modules/cssom/lib/CSSSupportsRule.js
100644 → 100755
File mode changed
node_modules/cssstyle/node_modules/cssom/lib/CSSValue.js
100644 → 100755
File mode changed
File mode changed
node_modules/cssstyle/node_modules/cssom/lib/MatcherList.js
100644 → 100755
File mode changed
node_modules/cssstyle/node_modules/cssom/lib/MediaList.js
100644 → 100755
File mode changed
node_modules/cssstyle/node_modules/cssom/lib/StyleSheet.js
100644 → 100755
File mode changed
node_modules/cssstyle/node_modules/cssom/lib/clone.js
100644 → 100755
File mode changed
node_modules/cssstyle/node_modules/cssom/lib/index.js
100644 → 100755
File mode changed
node_modules/cssstyle/node_modules/cssom/lib/parse.js
100644 → 100755
File mode changed
node_modules/cssstyle/node_modules/cssom/package.json
100644 → 100755
File mode changed
node_modules/cssstyle/package.json
100644 → 100755
File mode changed
node_modules/dashdash/CHANGES.md
100644 → 100755
File mode changed
node_modules/dashdash/LICENSE.txt
100644 → 100755
File mode changed
node_modules/dashdash/README.md
100644 → 100755
File mode changed
node_modules/dashdash/etc/dashdash.bash_completion.in
100644 → 100755
File mode changed
node_modules/dashdash/lib/dashdash.js
100644 → 100755
File mode changed
node_modules/dashdash/package.json
100644 → 100755
File mode changed
node_modules/data-urls/LICENSE.txt
100644 → 100755
File mode changed
node_modules/data-urls/README.md
100644 → 100755
File mode changed
node_modules/data-urls/lib/parser.js
100644 → 100755
File mode changed
node_modules/data-urls/lib/utils.js
100644 → 100755
File mode changed
node_modules/data-urls/package.json
100644 → 100755
File mode changed
node_modules/debug/.coveralls.yml
100644 → 100755
File mode changed
node_modules/debug/.eslintrc
100644 → 100755
File mode changed
node_modules/debug/.npmignore
100644 → 100755
File mode changed
node_modules/debug/.travis.yml
100644 → 100755
File mode changed
node_modules/debug/CHANGELOG.md
100644 → 100755
File mode changed
node_modules/debug/LICENSE
100644 → 100755
File mode changed
node_modules/debug/Makefile
100644 → 100755
File mode changed
node_modules/debug/README.md
100644 → 100755
File mode changed
node_modules/debug/component.json
100644 → 100755
File mode changed
node_modules/debug/karma.conf.js
100644 → 100755
File mode changed
node_modules/debug/node.js
100644 → 100755
File mode changed
node_modules/debug/package.json
100644 → 100755
File mode changed
node_modules/debug/src/browser.js
100644 → 100755
File mode changed
node_modules/debug/src/debug.js
100644 → 100755
File mode changed
node_modules/debug/src/index.js
100644 → 100755
File mode changed
node_modules/debug/src/inspector-log.js
100644 → 100755
File mode changed
node_modules/debug/src/node.js
100644 → 100755
File mode changed
node_modules/decimal.js/CHANGELOG.md
100644 → 100755
File mode changed
node_modules/decimal.js/LICENCE.md
100644 → 100755
File mode changed
node_modules/decimal.js/README.md
100644 → 100755
File mode changed
node_modules/decimal.js/decimal.d.ts
100644 → 100755
File mode changed
node_modules/decimal.js/decimal.js
100644 → 100755
File mode changed
node_modules/decimal.js/decimal.mjs
100644 → 100755
File mode changed
node_modules/decimal.js/package.json
100644 → 100755
File mode changed
node_modules/decompress-response/index.d.ts
100644 → 100755
File mode changed
node_modules/decompress-response/index.js
100644 → 100755
File mode changed
node_modules/decompress-response/license
100644 → 100755
File mode changed
node_modules/decompress-response/package.json
100644 → 100755
1 | { | 1 | { |
2 | - "_from": "decompress-response@^6.0.0", | 2 | + "name": "decompress-response", |
3 | - "_id": "decompress-response@6.0.0", | 3 | + "version": "6.0.0", |
4 | - "_inBundle": false, | 4 | + "description": "Decompress a HTTP response if needed", |
5 | - "_integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", | 5 | + "license": "MIT", |
6 | - "_location": "/decompress-response", | 6 | + "repository": "sindresorhus/decompress-response", |
7 | - "_phantomChildren": {}, | 7 | + "funding": "https://github.com/sponsors/sindresorhus", |
8 | - "_requested": { | 8 | + "author": { |
9 | - "type": "range", | 9 | + "name": "Sindre Sorhus", |
10 | - "registry": true, | 10 | + "email": "sindresorhus@gmail.com", |
11 | - "raw": "decompress-response@^6.0.0", | 11 | + "url": "https://sindresorhus.com" |
12 | - "name": "decompress-response", | 12 | + }, |
13 | - "escapedName": "decompress-response", | 13 | + "engines": { |
14 | - "rawSpec": "^6.0.0", | 14 | + "node": ">=10" |
15 | - "saveSpec": null, | 15 | + }, |
16 | - "fetchSpec": "^6.0.0" | 16 | + "scripts": { |
17 | - }, | 17 | + "test": "xo && ava && tsd" |
18 | - "_requiredBy": [ | 18 | + }, |
19 | - "/simple-get" | 19 | + "files": [ |
20 | - ], | 20 | + "index.js", |
21 | - "_resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", | 21 | + "index.d.ts" |
22 | - "_shasum": "ca387612ddb7e104bd16d85aab00d5ecf09c66fc", | 22 | + ], |
23 | - "_spec": "decompress-response@^6.0.0", | 23 | + "keywords": [ |
24 | - "_where": "C:\\Users\\bshoo\\Desktop\\OSS\\Singer-Composer\\node_modules\\simple-get", | 24 | + "decompress", |
25 | - "author": { | 25 | + "response", |
26 | - "name": "Sindre Sorhus", | 26 | + "http", |
27 | - "email": "sindresorhus@gmail.com", | 27 | + "https", |
28 | - "url": "https://sindresorhus.com" | 28 | + "zlib", |
29 | - }, | 29 | + "gzip", |
30 | - "bugs": { | 30 | + "zip", |
31 | - "url": "https://github.com/sindresorhus/decompress-response/issues" | 31 | + "deflate", |
32 | - }, | 32 | + "unzip", |
33 | - "bundleDependencies": false, | 33 | + "ungzip", |
34 | - "dependencies": { | 34 | + "incoming", |
35 | - "mimic-response": "^3.1.0" | 35 | + "message", |
36 | - }, | 36 | + "stream", |
37 | - "deprecated": false, | 37 | + "compressed", |
38 | - "description": "Decompress a HTTP response if needed", | 38 | + "brotli" |
39 | - "devDependencies": { | 39 | + ], |
40 | - "@types/node": "^14.0.1", | 40 | + "dependencies": { |
41 | - "ava": "^2.2.0", | 41 | + "mimic-response": "^3.1.0" |
42 | - "get-stream": "^5.0.0", | 42 | + }, |
43 | - "pify": "^5.0.0", | 43 | + "devDependencies": { |
44 | - "tsd": "^0.11.0", | 44 | + "@types/node": "^14.0.1", |
45 | - "xo": "^0.30.0" | 45 | + "ava": "^2.2.0", |
46 | - }, | 46 | + "get-stream": "^5.0.0", |
47 | - "engines": { | 47 | + "pify": "^5.0.0", |
48 | - "node": ">=10" | 48 | + "tsd": "^0.11.0", |
49 | - }, | 49 | + "xo": "^0.30.0" |
50 | - "files": [ | 50 | + }, |
51 | - "index.js", | 51 | + "xo": { |
52 | - "index.d.ts" | 52 | + "rules": { |
53 | - ], | 53 | + "@typescript-eslint/prefer-readonly-parameter-types": "off" |
54 | - "funding": "https://github.com/sponsors/sindresorhus", | 54 | + } |
55 | - "homepage": "https://github.com/sindresorhus/decompress-response#readme", | 55 | + } |
56 | - "keywords": [ | ||
57 | - "decompress", | ||
58 | - "response", | ||
59 | - "http", | ||
60 | - "https", | ||
61 | - "zlib", | ||
62 | - "gzip", | ||
63 | - "zip", | ||
64 | - "deflate", | ||
65 | - "unzip", | ||
66 | - "ungzip", | ||
67 | - "incoming", | ||
68 | - "message", | ||
69 | - "stream", | ||
70 | - "compressed", | ||
71 | - "brotli" | ||
72 | - ], | ||
73 | - "license": "MIT", | ||
74 | - "name": "decompress-response", | ||
75 | - "repository": { | ||
76 | - "type": "git", | ||
77 | - "url": "git+https://github.com/sindresorhus/decompress-response.git" | ||
78 | - }, | ||
79 | - "scripts": { | ||
80 | - "test": "xo && ava && tsd" | ||
81 | - }, | ||
82 | - "version": "6.0.0", | ||
83 | - "xo": { | ||
84 | - "rules": { | ||
85 | - "@typescript-eslint/prefer-readonly-parameter-types": "off" | ||
86 | - } | ||
87 | - } | ||
88 | } | 56 | } | ... | ... |
node_modules/decompress-response/readme.md
100644 → 100755
File mode changed
node_modules/deep-extend/CHANGELOG.md
100644 → 100755
File mode changed
node_modules/deep-extend/LICENSE
100644 → 100755
File mode changed
node_modules/deep-extend/README.md
100644 → 100755
File mode changed
node_modules/deep-extend/index.js
100644 → 100755
File mode changed
node_modules/deep-extend/lib/deep-extend.js
100644 → 100755
File mode changed
node_modules/deep-extend/package.json
100644 → 100755
1 | { | 1 | { |
2 | - "_from": "deep-extend@^0.6.0", | 2 | + "name": "deep-extend", |
3 | - "_id": "deep-extend@0.6.0", | 3 | + "description": "Recursive object extending", |
4 | - "_inBundle": false, | 4 | + "license": "MIT", |
5 | - "_integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", | 5 | + "version": "0.6.0", |
6 | - "_location": "/deep-extend", | 6 | + "homepage": "https://github.com/unclechu/node-deep-extend", |
7 | - "_phantomChildren": {}, | 7 | + "keywords": [ |
8 | - "_requested": { | 8 | + "deep-extend", |
9 | - "type": "range", | 9 | + "extend", |
10 | - "registry": true, | 10 | + "deep", |
11 | - "raw": "deep-extend@^0.6.0", | 11 | + "recursive", |
12 | - "name": "deep-extend", | 12 | + "xtend", |
13 | - "escapedName": "deep-extend", | 13 | + "clone", |
14 | - "rawSpec": "^0.6.0", | 14 | + "merge", |
15 | - "saveSpec": null, | 15 | + "json" |
16 | - "fetchSpec": "^0.6.0" | ||
17 | - }, | ||
18 | - "_requiredBy": [ | ||
19 | - "/rc" | ||
20 | ], | 16 | ], |
21 | - "_resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", | 17 | + "licenses": [ |
22 | - "_shasum": "c4fa7c95404a17a9c3e8ca7e1537312b736330ac", | 18 | + { |
23 | - "_spec": "deep-extend@^0.6.0", | 19 | + "type": "MIT", |
24 | - "_where": "C:\\Users\\bshoo\\Desktop\\OSS\\Singer-Composer\\node_modules\\rc", | 20 | + "url": "https://raw.githubusercontent.com/unclechu/node-deep-extend/master/LICENSE" |
25 | - "author": { | 21 | + } |
26 | - "name": "Viacheslav Lotsmanov", | 22 | + ], |
27 | - "email": "lotsmanov89@gmail.com" | 23 | + "repository": { |
28 | - }, | 24 | + "type": "git", |
29 | - "bugs": { | 25 | + "url": "git://github.com/unclechu/node-deep-extend.git" |
30 | - "url": "https://github.com/unclechu/node-deep-extend/issues" | ||
31 | }, | 26 | }, |
32 | - "bundleDependencies": false, | 27 | + "author": "Viacheslav Lotsmanov <lotsmanov89@gmail.com>", |
28 | + "bugs": "https://github.com/unclechu/node-deep-extend/issues", | ||
33 | "contributors": [ | 29 | "contributors": [ |
34 | { | 30 | { |
35 | "name": "Romain Prieto", | 31 | "name": "Romain Prieto", |
... | @@ -48,45 +44,19 @@ | ... | @@ -48,45 +44,19 @@ |
48 | "url": "https://github.com/mwakerman" | 44 | "url": "https://github.com/mwakerman" |
49 | } | 45 | } |
50 | ], | 46 | ], |
51 | - "deprecated": false, | 47 | + "main": "lib/deep-extend.js", |
52 | - "description": "Recursive object extending", | 48 | + "engines": { |
49 | + "node": ">=4.0.0" | ||
50 | + }, | ||
51 | + "scripts": { | ||
52 | + "test": "./node_modules/.bin/mocha" | ||
53 | + }, | ||
53 | "devDependencies": { | 54 | "devDependencies": { |
54 | "mocha": "5.2.0", | 55 | "mocha": "5.2.0", |
55 | "should": "13.2.1" | 56 | "should": "13.2.1" |
56 | }, | 57 | }, |
57 | - "engines": { | ||
58 | - "node": ">=4.0.0" | ||
59 | - }, | ||
60 | "files": [ | 58 | "files": [ |
61 | "index.js", | 59 | "index.js", |
62 | "lib/" | 60 | "lib/" |
63 | - ], | 61 | + ] |
64 | - "homepage": "https://github.com/unclechu/node-deep-extend", | ||
65 | - "keywords": [ | ||
66 | - "deep-extend", | ||
67 | - "extend", | ||
68 | - "deep", | ||
69 | - "recursive", | ||
70 | - "xtend", | ||
71 | - "clone", | ||
72 | - "merge", | ||
73 | - "json" | ||
74 | - ], | ||
75 | - "license": "MIT", | ||
76 | - "licenses": [ | ||
77 | - { | ||
78 | - "type": "MIT", | ||
79 | - "url": "https://raw.githubusercontent.com/unclechu/node-deep-extend/master/LICENSE" | ||
80 | - } | ||
81 | - ], | ||
82 | - "main": "lib/deep-extend.js", | ||
83 | - "name": "deep-extend", | ||
84 | - "repository": { | ||
85 | - "type": "git", | ||
86 | - "url": "git://github.com/unclechu/node-deep-extend.git" | ||
87 | - }, | ||
88 | - "scripts": { | ||
89 | - "test": "mocha" | ||
90 | - }, | ||
91 | - "version": "0.6.0" | ||
92 | } | 62 | } | ... | ... |
node_modules/deep-is/.travis.yml
100644 → 100755
File mode changed
node_modules/deep-is/LICENSE
100644 → 100755
File mode changed
node_modules/deep-is/README.markdown
100644 → 100755
File mode changed
node_modules/deep-is/example/cmp.js
100644 → 100755
File mode changed
node_modules/deep-is/index.js
100644 → 100755
File mode changed
node_modules/deep-is/package.json
100644 → 100755
File mode changed
node_modules/deep-is/test/NaN.js
100644 → 100755
File mode changed
node_modules/deep-is/test/cmp.js
100644 → 100755
File mode changed
node_modules/deep-is/test/neg-vs-pos-0.js
100644 → 100755
File mode changed
node_modules/delayed-stream/.npmignore
100644 → 100755
File mode changed
node_modules/delayed-stream/License
100644 → 100755
File mode changed
node_modules/delayed-stream/Makefile
100644 → 100755
File mode changed
node_modules/delayed-stream/Readme.md
100644 → 100755
File mode changed
-
Please register or login to post a comment