package.json 861 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "commander",
  3. "version": "2.15.1",
  4. "description": "the complete solution for node.js command-line programs",
  5. "keywords": [
  6. "commander",
  7. "command",
  8. "option",
  9. "parser"
  10. ],
  11. "author": "TJ Holowaychuk <tj@vision-media.ca>",
  12. "license": "MIT",
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/tj/commander.js.git"
  16. },
  17. "scripts": {
  18. "lint": "eslint index.js",
  19. "test": "make test && npm run test-typings",
  20. "test-typings": "node_modules/typescript/bin/tsc -p tsconfig.json"
  21. },
  22. "main": "index",
  23. "files": [
  24. "index.js",
  25. "typings/index.d.ts"
  26. ],
  27. "dependencies": {},
  28. "devDependencies": {
  29. "@types/node": "^7.0.55",
  30. "eslint": "^3.19.0",
  31. "should": "^11.2.1",
  32. "sinon": "^2.4.1",
  33. "standard": "^10.0.3",
  34. "typescript": "^2.7.2"
  35. },
  36. "typings": "typings/index.d.ts"
  37. }