a> 30f7226d9a first commit 2 年之前 tailwind-color-palette 30f7226d9a first commit 2 年之前 tailwindcss 30f7226d9a first commit 2 年之前 thenify 30f7226d9a first commit 2 年之前 thenify-all 30f7226d9a first commit 2 年之前 to-regex-range 30f7226d9a first commit 2 年之前 tr46 30f7226d9a first commit 2 年之前 ts-interface-checker 30f7226d9a first commit 2 年之前 uglify-js 30f7226d9a first commit 2 年之前 underscore 30f7226d9a first commit 2 年之前 upper-case 30f7226d9a first commit 2 年之前 util-deprecate 30f7226d9a first commit 2 年之前 valid-data-url 30f7226d9a first commit 2 年之前 web-resource-inliner 30f7226d9a first commit 2 年之前 webidl-conversions 30f7226d9a first commit 2 年之前 whatwg-url 30f7226d9a first commit 2 年之前 wrap-ansi 30f7226d9a first commit 2 年之前 wrappy 30f7226d9a first commit 2 年之前 y18n 30f7226d9a first commit 2 年之前 yallist 30f7226d9a first commit 2 年之前 yaml 30f7226d9a first commit 2 年之前 yargs 30f7226d9a first commit 2 年之前 yargs-parser 30f7226d9a first commit 2 年之前 .yarn-integrity 30f7226d9a first commit 2 年之前 tum/network_report_server - Gogs: Simplico Git Service

No Description

package.json 752B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "thenify",
  3. "description": "Promisify a callback-based function",
  4. "version": "3.3.1",
  5. "author": "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)",
  6. "license": "MIT",
  7. "repository": "thenables/thenify",
  8. "dependencies": {
  9. "any-promise": "^1.0.0"
  10. },
  11. "devDependencies": {
  12. "bluebird": "^3.1.1",
  13. "istanbul": "^0.4.0",
  14. "mocha": "^3.0.2"
  15. },
  16. "scripts": {
  17. "test": "mocha --reporter spec",
  18. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot",
  19. "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"
  20. },
  21. "keywords": [
  22. "promisify",
  23. "promise",
  24. "thenify",
  25. "then",
  26. "es6"
  27. ],
  28. "files": [
  29. "index.js"
  30. ]
  31. }