package.json 953 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "jake",
  3. "description": "JavaScript build tool, similar to Make or Rake",
  4. "keywords": [
  5. "build",
  6. "cli",
  7. "make",
  8. "rake"
  9. ],
  10. "version": "10.8.7",
  11. "author": "Matthew Eernisse <mde@fleegix.org> (http://fleegix.org)",
  12. "license": "Apache-2.0",
  13. "bin": {
  14. "jake": "./bin/cli.js"
  15. },
  16. "main": "./lib/jake.js",
  17. "scripts": {
  18. "lint": "eslint --format codeframe \"lib/**/*.js\" \"test/**/*.js\"",
  19. "lint:fix": "eslint --fix \"lib/**/*.js\" \"test/**/*.js\"",
  20. "test": "./bin/cli.js test",
  21. "test:ci": "npm run lint && npm run test"
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "git://github.com/jakejs/jake.git"
  26. },
  27. "preferGlobal": true,
  28. "dependencies": {
  29. "async": "^3.2.3",
  30. "chalk": "^4.0.2",
  31. "filelist": "^1.0.4",
  32. "minimatch": "^3.1.2"
  33. },
  34. "devDependencies": {
  35. "eslint": "^6.8.0",
  36. "mocha": "^10.2.0",
  37. "q": "^1.5.1"
  38. },
  39. "engines": {
  40. "node": ">=10"
  41. }
  42. }