package.json 886 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "get-package-type",
  3. "version": "0.1.0",
  4. "description": "Determine the `package.json#type` which applies to a location",
  5. "type": "module",
  6. "main": "index.cjs",
  7. "exports": "./index.cjs",
  8. "scripts": {
  9. "pretest": "if-ver -ge 10 || exit 0; cfware-lint .",
  10. "tests-only": "nyc -s node test.cjs",
  11. "test": "npm run -s tests-only",
  12. "posttest": "nyc report --check-coverage"
  13. },
  14. "engines": {
  15. "node": ">=8.0.0"
  16. },
  17. "author": "Corey Farrell",
  18. "license": "MIT",
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/cfware/get-package-type.git"
  22. },
  23. "bugs": {
  24. "url": "https://github.com/cfware/get-package-type/issues"
  25. },
  26. "homepage": "https://github.com/cfware/get-package-type#readme",
  27. "dependencies": {},
  28. "devDependencies": {
  29. "@cfware/lint": "^1.4.3",
  30. "@cfware/nyc": "^0.7.0",
  31. "if-ver": "^1.1.0",
  32. "libtap": "^0.3.0",
  33. "nyc": "^15.0.1"
  34. }
  35. }