package.json 778 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "commander",
  3. "version": "2.13.0",
  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. "test": "make test && npm run test-typings",
  19. "test-typings": "node_modules/typescript/bin/tsc -p tsconfig.json"
  20. },
  21. "main": "index",
  22. "files": [
  23. "index.js",
  24. "typings/index.d.ts"
  25. ],
  26. "dependencies": {},
  27. "devDependencies": {
  28. "@types/node": "^7.0.48",
  29. "should": "^11.2.1",
  30. "sinon": "^2.4.1",
  31. "typescript": "^2.6.2"
  32. },
  33. "typings": "typings/index.d.ts"
  34. }