package.json 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. {
  2. "_args": [
  3. [
  4. "lie@3.3.0",
  5. "/Users/mac/Desktop/zz的项目/cdss/大名县人民医院/CDSS-daming-web"
  6. ]
  7. ],
  8. "_from": "lie@3.3.0",
  9. "_id": "lie@3.3.0",
  10. "_inBundle": false,
  11. "_integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==",
  12. "_location": "/lie",
  13. "_phantomChildren": {},
  14. "_requested": {
  15. "type": "version",
  16. "registry": true,
  17. "raw": "lie@3.3.0",
  18. "name": "lie",
  19. "escapedName": "lie",
  20. "rawSpec": "3.3.0",
  21. "saveSpec": null,
  22. "fetchSpec": "3.3.0"
  23. },
  24. "_requiredBy": [
  25. "/jszip"
  26. ],
  27. "_resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz",
  28. "_spec": "3.3.0",
  29. "_where": "/Users/mac/Desktop/zz的项目/cdss/大名县人民医院/CDSS-daming-web",
  30. "browser": {
  31. "./lib/index.js": "./lib/browser.js"
  32. },
  33. "bugs": {
  34. "url": "https://github.com/calvinmetcalf/lie/issues"
  35. },
  36. "dependencies": {
  37. "immediate": "~3.0.5"
  38. },
  39. "description": "A basic but performant promise implementation",
  40. "devDependencies": {
  41. "browserify": "^13.0.0",
  42. "browserify-transform-cli": "^1.1.1",
  43. "bundle-collapser": "^1.2.1",
  44. "copyfiles": "^1.0.0",
  45. "derequire": "^1.2.0",
  46. "es3ify": "^0.2.2",
  47. "inline-process-browser": "^1.0.0",
  48. "istanbul": "^0.2.6",
  49. "jshint": "^2.4.4",
  50. "mkdirp": "^0.5.1",
  51. "mocha": "^1.18.0",
  52. "mocha-phantomjs": "~3.5.0",
  53. "phantomjs": "^1.9.9",
  54. "promises-aplus-tests": "github:calvinmetcalf/promises-tests#phantom",
  55. "rimraf": "^2.5.4",
  56. "typescript": "^2.7.1",
  57. "uglify-js": "^2.4.13",
  58. "unreachable-branch-transform": "^0.3.0"
  59. },
  60. "files": [
  61. "lib",
  62. "dist",
  63. "polyfill.js",
  64. "lie.d.ts"
  65. ],
  66. "homepage": "https://github.com/calvinmetcalf/lie#readme",
  67. "keywords": [
  68. "lie",
  69. "promise",
  70. "async",
  71. "aplus"
  72. ],
  73. "license": "MIT",
  74. "main": "lib/index.js",
  75. "name": "lie",
  76. "repository": {
  77. "type": "git",
  78. "url": "git+https://github.com/calvinmetcalf/lie.git"
  79. },
  80. "scripts": {
  81. "browser": "browserify test/cover.js > test/browser.js && mocha-phantomjs test/test.html",
  82. "build": "npm run build-node && npm run build-js && npm run build-min && npm run build-poly",
  83. "build-js": "browserify -s Promise -p bundle-collapser/plugin . | derequire > ./dist/lie.js",
  84. "build-min": "uglifyjs ./dist/lie.js -mc > ./dist/lie.min.js",
  85. "build-node": "copyfiles -f src/index.js lib && browserify-transform-cli inline-process-browser unreachable-branch-transform es3ify < src/index.js > lib/browser.js",
  86. "build-poly": "npm run build-poly-js && npm run build-poly-min",
  87. "build-poly-js": "browserify -p bundle-collapser/plugin ./polyfill.js | derequire > ./dist/lie.polyfill.js",
  88. "build-poly-min": "uglifyjs ./dist/lie.polyfill.js -mc > ./dist/lie.polyfill.min.js",
  89. "cover": "istanbul cover _mocha ./test/cover.js -- -R spec && istanbul check-coverage --lines 100 --function 100 --statements 100 --branches 100",
  90. "jshint": "jshint src",
  91. "node": "mocha -R spec ./test/cover.js",
  92. "prebuild": "rimraf lib dist && mkdirp lib dist",
  93. "pretest": "npm run build",
  94. "test": "npm run jshint && mocha -R nyan ./test/cover.js && tsc --noEmit ./test/types.ts"
  95. },
  96. "types": "lie.d.ts",
  97. "version": "3.3.0"
  98. }