0736f1a6212ed562152ae554bc8075f2da9d162f03a5e41590e396bef56bdd31bafcf26050b1c54ec4224809331d38d35864e2556b99046e9295215bc4e3fe 988 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "pathe",
  3. "version": "0.2.0",
  4. "description": "Normalized paths for Node.js",
  5. "repository": "unjs/pathe",
  6. "license": "MIT",
  7. "sideEffects": false,
  8. "exports": {
  9. ".": {
  10. "import": "./dist/index.mjs",
  11. "require": "./dist/index.cjs"
  12. }
  13. },
  14. "main": "./dist/index.cjs",
  15. "types": "./dist/index.d.ts",
  16. "files": [
  17. "dist"
  18. ],
  19. "scripts": {
  20. "build": "siroc build",
  21. "lint": "eslint --ext .ts .",
  22. "prepublishOnly": "yarn build",
  23. "release": "yarn test && standard-version && git push --follow-tags && npm publish",
  24. "test": "nyc mocha -r jiti/register test/*"
  25. },
  26. "devDependencies": {
  27. "@nuxtjs/eslint-config-typescript": "latest",
  28. "@types/chai": "^4.2.22",
  29. "@types/mocha": "^9.0.0",
  30. "@types/node": "^16.9.6",
  31. "chai": "^4.3.4",
  32. "eslint": "latest",
  33. "jiti": "^1.12.3",
  34. "mocha": "^9.1.1",
  35. "nyc": "^15.1.0",
  36. "siroc": "latest",
  37. "standard-version": "latest",
  38. "typescript": "^4.4.3"
  39. }
  40. }