package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "lodash",
  3. "version": "4.15.0",
  4. "license": "MIT",
  5. "private": true,
  6. "main": "lodash.js",
  7. "scripts": {
  8. "build": "npm run build:main && npm run build:fp",
  9. "build:fp": "node lib/fp/build-dist.js",
  10. "build:fp-modules": "node lib/fp/build-modules.js",
  11. "build:main": "node lib/main/build-dist.js",
  12. "build:main-modules": "node lib/main/build-modules.js",
  13. "doc": "node lib/main/build-doc github && npm run test:doc",
  14. "doc:fp": "node lib/fp/build-doc",
  15. "doc:site": "node lib/main/build-doc site",
  16. "doc:sitehtml": "optional-dev-dependency marky-markdown@^8.0.0 && npm run doc:site && node lib/main/build-site",
  17. "pretest": "npm run build",
  18. "style": "npm run style:main && npm run style:fp && npm run style:perf && npm run style:test",
  19. "style:fp": "jscs fp/*.js lib/**/*.js",
  20. "style:main": "jscs lodash.js",
  21. "style:perf": "jscs perf/*.js perf/**/*.js",
  22. "style:test": "jscs test/*.js test/**/*.js",
  23. "test": "npm run test:main && npm run test:fp",
  24. "test:doc": "markdown-doctest",
  25. "test:fp": "node test/test-fp",
  26. "test:main": "node test/test",
  27. "validate": "npm run style && npm run test"
  28. },
  29. "devDependencies": {
  30. "async": "^2.0.1",
  31. "benchmark": "^2.1.1",
  32. "chalk": "^1.1.3",
  33. "codecov.io": "~0.1.6",
  34. "coveralls": "^2.11.12",
  35. "curl-amd": "~0.8.12",
  36. "docdown": "~0.7.1",
  37. "dojo": "^1.11.2",
  38. "ecstatic": "^2.1.0",
  39. "fs-extra": "~0.30.0",
  40. "glob": "^7.0.5",
  41. "istanbul": "0.4.4",
  42. "jquery": "^3.1.0",
  43. "jscs": "^3.0.7",
  44. "lodash": "4.14.2",
  45. "lodash-doc-globals": "^0.1.1",
  46. "markdown-doctest": "^0.8.1",
  47. "optional-dev-dependency": "^1.3.0",
  48. "platform": "^1.3.1",
  49. "qunit-extras": "^2.1.0",
  50. "qunitjs": "^2.0.1",
  51. "request": "^2.74.0",
  52. "requirejs": "^2.2.0",
  53. "sauce-tunnel": "^2.5.0",
  54. "uglify-js": "2.7.0",
  55. "webpack": "^1.13.1"
  56. }
  57. }