package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {
  2. "_from": "promise-polyfill@^7.1.0",
  3. "_id": "promise-polyfill@7.1.2",
  4. "_inBundle": false,
  5. "_integrity": "sha512-FuEc12/eKqqoRYIGBrUptCBRhobL19PS2U31vMNTfyck1FxPyMfgsXyW4Mav85y/ZN1hop3hOwRlUDok23oYfQ==",
  6. "_location": "/promise-polyfill",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "promise-polyfill@^7.1.0",
  12. "name": "promise-polyfill",
  13. "escapedName": "promise-polyfill",
  14. "rawSpec": "^7.1.0",
  15. "saveSpec": null,
  16. "fetchSpec": "^7.1.0"
  17. },
  18. "_requiredBy": [
  19. "/dingtalk-jsapi"
  20. ],
  21. "_resolved": "https://registry.npmmirror.com/promise-polyfill/-/promise-polyfill-7.1.2.tgz",
  22. "_shasum": "ab05301d8c28536301622d69227632269a70ca3b",
  23. "_spec": "promise-polyfill@^7.1.0",
  24. "_where": "D:\\zs项目\\Ding\\node_modules\\dingtalk-jsapi",
  25. "author": {
  26. "name": "Taylor Hakes"
  27. },
  28. "bugs": {
  29. "url": "https://github.com/taylorhakes/promise-polyfill/issues"
  30. },
  31. "bundleDependencies": false,
  32. "dependencies": {},
  33. "deprecated": false,
  34. "description": "Lightweight promise polyfill. A+ compliant",
  35. "devDependencies": {
  36. "cross-env": "^5.1.1",
  37. "eslint": "^4.11.0",
  38. "husky": "^0.14.3",
  39. "karma": "^0.13.19",
  40. "karma-browserify": "^4.4.2",
  41. "karma-chrome-launcher": "^0.2.2",
  42. "karma-mocha": "^0.2.1",
  43. "lint-staged": "^5.0.0",
  44. "mocha": "^2.3.4",
  45. "npm-run-all": "^4.1.2",
  46. "prettier": "^1.8.2",
  47. "promises-aplus-tests": "*",
  48. "rimraf": "^2.6.2",
  49. "rollup": "^0.52.0",
  50. "rollup-plugin-uglify": "^2.0.1",
  51. "sinon": "^1.17.2"
  52. },
  53. "files": [
  54. "src",
  55. "lib",
  56. "dist"
  57. ],
  58. "homepage": "https://github.com/taylorhakes/promise-polyfill",
  59. "jsnext:main": "src/index.js",
  60. "keywords": [
  61. "promise",
  62. "promise-polyfill",
  63. "ES6",
  64. "promises-aplus"
  65. ],
  66. "license": "MIT",
  67. "main": "lib/index.js",
  68. "name": "promise-polyfill",
  69. "repository": {
  70. "type": "git",
  71. "url": "git+https://github.com/taylorhakes/promise-polyfill.git"
  72. },
  73. "scripts": {
  74. "build": "run-p build:**",
  75. "build:cjs": "rollup -i src/index.js -o lib/index.js -f cjs",
  76. "build:cjs-polyfill": "rollup -i src/polyfill.js -o lib/polyfill.js -f cjs",
  77. "build:umd": "cross-env NODE_ENV=development rollup -i src/index.js -o dist/promise.js -c rollup.umd.config.js",
  78. "build:umd-polyfill": "cross-env NODE_ENV=development rollup -i src/polyfill.js -o dist/polyfill.js -c rollup.umd.config.js",
  79. "build:umd-polyfill:min": "cross-env NODE_ENV=production rollup -i src/polyfill.js -o dist/polyfill.min.js -c rollup.umd.config.js",
  80. "build:umd:min": "cross-env NODE_ENV=production rollup -i src/index.js -o dist/promise.min.js -c rollup.umd.config.js",
  81. "prebuild": "rimraf lib dist",
  82. "precommit": "lint-staged",
  83. "prepare": "npm run build",
  84. "prepublish": "test $(npm -v | tr . '\\n' | head -n 1) -ge '4' || exit 1",
  85. "pretest": "npm run build:cjs",
  86. "test": "eslint src && mocha && karma start --single-run"
  87. },
  88. "unpkg": "dist/promise.min.js",
  89. "version": "7.1.2"
  90. }