package.json 483 B

12345678910111213141516171819202122
  1. {
  2. "name": "std-env",
  3. "version": "2.3.1",
  4. "description": "Detect running environment of the current Node.js process",
  5. "repository": "unjs/std-env",
  6. "license": "MIT",
  7. "main": "./index.js",
  8. "types": "./index.d.ts",
  9. "scripts": {
  10. "release": "standard-version && git push --follow-tags && npm publish"
  11. },
  12. "files": [
  13. "index.js",
  14. "index.d.ts"
  15. ],
  16. "dependencies": {
  17. "ci-info": "^3.1.1"
  18. },
  19. "devDependencies": {
  20. "standard-version": "^9.3.1"
  21. }
  22. }