mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
49 lines
1.4 KiB
JSON
49 lines
1.4 KiB
JSON
{
|
|
"name": "tildify",
|
|
"version": "1.1.0",
|
|
"description": "Convert an absolute path to a tilde path: /Users/sindresorhus/dev => ~/dev",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/sindresorhus/tildify"
|
|
},
|
|
"author": {
|
|
"name": "Sindre Sorhus",
|
|
"email": "sindresorhus@gmail.com",
|
|
"url": "sindresorhus.com"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.10.0"
|
|
},
|
|
"scripts": {
|
|
"test": "node test.js"
|
|
},
|
|
"files": [
|
|
"index.js"
|
|
],
|
|
"keywords": [
|
|
"tilde",
|
|
"tildify",
|
|
"path",
|
|
"home",
|
|
"dir",
|
|
"directory",
|
|
"user",
|
|
"expand",
|
|
"unexpand"
|
|
],
|
|
"dependencies": {
|
|
"os-homedir": "^1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"ava": "0.0.4"
|
|
},
|
|
"readme": "# tildify [](https://travis-ci.org/sindresorhus/tildify)\n\n> Convert an absolute path to a tilde path: `/Users/sindresorhus/dev` => `~/dev`\n\n\n## Install\n\n```\n$ npm install --save tildify\n```\n\n\n## Usage\n\n```js\nvar tildify = require('tildify');\n\ntildify('/Users/sindresorhus/dev');\n//=> '~/dev'\n```\n\n\n## Related\n\nSee [untildify](https://github.com/sindresorhus/untildify) for the inverse.\n\n\n## License\n\nMIT © [Sindre Sorhus](http://sindresorhus.com)\n",
|
|
"readmeFilename": "readme.md",
|
|
"bugs": {
|
|
"url": "https://github.com/sindresorhus/tildify/issues"
|
|
},
|
|
"_id": "tildify@1.1.0",
|
|
"_from": "tildify@^1.0.0"
|
|
}
|