Last active
November 6, 2017 12:29
-
-
Save iarna/a47991307e626ffdef0a3012ae41fae5 to your computer and use it in GitHub Desktop.
shrinkpack bug
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "x", | |
"version": "1.0.0", | |
"lockfileVersion": 1, | |
"requires": true, | |
"dependencies": { | |
"whatwg-fetch": { | |
"version": "2.0.3", | |
"resolved": "file:whatwg-fetch-2.0.3.tar", | |
"integrity": "sha512-RFZv5NwmYdZP+xIWp6SZkF0kiBe6oG05+mlWRZNi+lTMM99NByWEtXoTjR8SLNS3FVJ0iy0Y3h44skNHlVvY4w==" | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "x", | |
"version": "1.0.0", | |
"dependencies": { | |
"whatwg-fetch": "2.0.3" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package/package.json 000644 001750 001750 0000000707 13056055443 013030 0 ustar 00 000000 000000 { | |
"name": "whatwg-fetch", | |
"description": "A window.fetch polyfill.", | |
"version": "2.0.3", | |
"main": "fetch.js", | |
"repository": "github/fetch", | |
"license": "MIT", | |
"devDependencies": { | |
"chai": "1.10.0", | |
"jshint": "2.8.0", | |
"mocha": "2.1.0", | |
"mocha-phantomjs-core": "2.0.1", | |
"promise-polyfill": "6.0.2", | |
"url-search-params": "0.6.1" | |
}, | |
"files": [ | |
"LICENSE", | |
"fetch.js" | |
], | |
"scripts": { | |
"test": "make" | |
} | |
} | |