package.json 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "_from": "compose-function@3.0.3",
  3. "_id": "compose-function@3.0.3",
  4. "_inBundle": false,
  5. "_integrity": "sha1-ntZ18TzFRQHTCVCkhv9qe6OrGF8=",
  6. "_location": "/compose-function",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "version",
  10. "registry": true,
  11. "raw": "compose-function@3.0.3",
  12. "name": "compose-function",
  13. "escapedName": "compose-function",
  14. "rawSpec": "3.0.3",
  15. "saveSpec": null,
  16. "fetchSpec": "3.0.3"
  17. },
  18. "_requiredBy": [
  19. "/resolve-url-loader"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/compose-function/-/compose-function-3.0.3.tgz",
  22. "_shasum": "9ed675f13cc54501d30950a486ff6a7ba3ab185f",
  23. "_spec": "compose-function@3.0.3",
  24. "_where": "C:\\Users\\rickh\\Desktop\\js-hw-1\\hw1\\node_modules\\resolve-url-loader",
  25. "author": {
  26. "name": "stoeffel"
  27. },
  28. "bugs": {
  29. "url": "http://github.com/stoeffel/compose-function/issues"
  30. },
  31. "bundleDependencies": false,
  32. "dependencies": {
  33. "arity-n": "^1.0.4"
  34. },
  35. "deprecated": false,
  36. "description": "Compose new functions f(g(x))",
  37. "devDependencies": {
  38. "babel": "^5.8.21",
  39. "babel-eslint": "^4.0.10",
  40. "coveralls": "^2.11.4",
  41. "curry-this": "^3.0.2",
  42. "es6-symbol": "^2.0.1",
  43. "eslint": "^1.2.0",
  44. "istanbul": "^0.3.18",
  45. "nodangel": "1.3.8",
  46. "opn-cli": "1.0.0",
  47. "tap-spec": "^4.0.2",
  48. "tape-catch": "1.0.4"
  49. },
  50. "files": [
  51. "/*.js",
  52. "/module/",
  53. "/README.md",
  54. "/LICENSE.md"
  55. ],
  56. "homepage": "http://github.com/stoeffel/compose-function",
  57. "keywords": [
  58. "function",
  59. "compose",
  60. "functional"
  61. ],
  62. "license": "MIT",
  63. "main": "index.js",
  64. "name": "compose-function",
  65. "repository": {
  66. "type": "git",
  67. "url": "git+ssh://git@github.com/stoeffel/compose-function.git"
  68. },
  69. "scripts": {
  70. "clean": "git reset && echo '/node_modules/' > .gitignore && git add .gitignore && git stash save --include-untracked --keep-index '`npm run clean` trash can' && git clean --force -d && git reset --hard && echo '\nclean: Uncommitted and ignored files have been moved to gitâ™s stash. To restore them run `git stash pop --quiet; git checkout .gitignore`.'",
  71. "coverage": "rm -rf coverage && npm run test:transpile && cd .es5 && istanbul cover test.js && mv coverage ..",
  72. "coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls",
  73. "develop": "nodangel --ignore node_modules --ignore coverage --exec 'npm run --silent test:lite'",
  74. "major-release": "npm version major && npm publish && git push --follow-tags",
  75. "minor-release": "npm version minor && npm publish && git push --follow-tags",
  76. "patch-release": "npm version patch && npm publish && git push --follow-tags",
  77. "prepublish": "npm run --silent clean && npm run transpile",
  78. "test": "eslint --ignore-path .gitignore .; npm run test:transpile && node .es5/test.js | tap-spec",
  79. "test:lite": "babel-node --optional es7.functionBind test.js | tap-spec",
  80. "test:transpile": "rm -rf .es5 && babel --optional es7.functionBind test.js test/*.js --out-dir .es5 && babel module/*.js --out-dir .es5",
  81. "transpile": "babel module --out-dir .",
  82. "view-coverage": "echo 'Generating coverage reports…'; npm run coverage >/dev/null && echo '…done.' && opn ./coverage/lcov-report/index.html >/dev/null"
  83. },
  84. "version": "3.0.3"
  85. }