package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "upath",
  3. "description": "A proxy to `path`, replacing `\\` with `/` for all results (supports UNC paths) & new methods to normalize & join keeping leading `./` and add, change, default, trim file extensions.",
  4. "version": "2.0.1",
  5. "homepage": "http://github.com/anodynos/upath/",
  6. "author": {
  7. "name": "Angelos Pikoulas",
  8. "email": "agelos.pikoulas@gmail.com"
  9. },
  10. "license": "MIT",
  11. "keywords": [
  12. "path",
  13. "unix",
  14. "windows",
  15. "extension",
  16. "file extension",
  17. "replace extension",
  18. "change extension",
  19. "trim extension",
  20. "add extension",
  21. "default extension",
  22. "UNC paths"
  23. ],
  24. "repository": {
  25. "type": "git",
  26. "url": "git://github.com/anodynos/upath"
  27. },
  28. "bugs": {
  29. "url": "http://github.com/anodynos/upath/issues",
  30. "email": "agelos.pikoulas@gmail.com"
  31. },
  32. "main": "./build/code/upath.js",
  33. "types": "./upath.d.ts",
  34. "preferGlobal": false,
  35. "scripts": {
  36. "test": "npx grunt",
  37. "build": "npx grunt lib"
  38. },
  39. "directories": {
  40. "doc": "./doc",
  41. "dist": "./build"
  42. },
  43. "engines": {
  44. "node": ">=4",
  45. "yarn": "*"
  46. },
  47. "devDependencies": {
  48. "chai": "~4.0.2",
  49. "coffee-script": "1.12.6",
  50. "grunt": "0.4.5",
  51. "grunt-contrib-watch": "^1.1.0",
  52. "grunt-urequire": "0.7.x",
  53. "lodash": "^4.17.20",
  54. "mocha": "~3.4.2",
  55. "uberscore": "0.0.19",
  56. "underscore.string": "^3.3.5",
  57. "urequire": "0.7.0-beta.33",
  58. "urequire-ab-specrunner": "^0.2.5",
  59. "urequire-rc-inject-version": "^0.1.6"
  60. }
  61. }