web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
2.4 KiB

  1. {
  2. "name": "compose-function",
  3. "version": "3.0.3",
  4. "description": "Compose new functions f(g(x))",
  5. "main": "index.js",
  6. "scripts": {
  7. "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`.'",
  8. "coverage": "rm -rf coverage && npm run test:transpile && cd .es5 && istanbul cover test.js && mv coverage ..",
  9. "coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls",
  10. "develop": "nodangel --ignore node_modules --ignore coverage --exec 'npm run --silent test:lite'",
  11. "prepublish": "npm run --silent clean && npm run transpile",
  12. "patch-release": "npm version patch && npm publish && git push --follow-tags",
  13. "minor-release": "npm version minor && npm publish && git push --follow-tags",
  14. "major-release": "npm version major && npm publish && git push --follow-tags",
  15. "test": "eslint --ignore-path .gitignore .; npm run test:transpile && node .es5/test.js | tap-spec",
  16. "test:lite": "babel-node --optional es7.functionBind test.js | tap-spec",
  17. "test:transpile": "rm -rf .es5 && babel --optional es7.functionBind test.js test/*.js --out-dir .es5 && babel module/*.js --out-dir .es5",
  18. "transpile": "babel module --out-dir .",
  19. "view-coverage": "echo 'Generating coverage reports…'; npm run coverage >/dev/null && echo '…done.' && opn ./coverage/lcov-report/index.html >/dev/null"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "http://github.com/stoeffel/compose-function"
  24. },
  25. "files": [
  26. "/*.js",
  27. "/module/",
  28. "/README.md",
  29. "/LICENSE.md"
  30. ],
  31. "keywords": [
  32. "function",
  33. "compose",
  34. "functional"
  35. ],
  36. "author": "stoeffel",
  37. "license": "MIT",
  38. "bugs": {
  39. "url": "http://github.com/stoeffel/compose-function/issues"
  40. },
  41. "homepage": "http://github.com/stoeffel/compose-function",
  42. "devDependencies": {
  43. "babel": "^5.8.21",
  44. "babel-eslint": "^4.0.10",
  45. "coveralls": "^2.11.4",
  46. "curry-this": "^3.0.2",
  47. "es6-symbol": "^2.0.1",
  48. "eslint": "^1.2.0",
  49. "istanbul": "^0.3.18",
  50. "nodangel": "1.3.8",
  51. "opn-cli": "1.0.0",
  52. "tap-spec": "^4.0.2",
  53. "tape-catch": "1.0.4"
  54. },
  55. "dependencies": {
  56. "arity-n": "^1.0.4"
  57. }
  58. }