UNPKG

1.31 kBJSONView Raw
1{
2 "name": "expand-tilde",
3 "description": "Bash-like tilde expansion for node.js. Expands a leading tilde in a file path to the user home directory, or `~+` to the cwd.",
4 "version": "2.0.2",
5 "homepage": "https://github.com/jonschlinkert/expand-tilde",
6 "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
7 "repository": "jonschlinkert/expand-tilde",
8 "bugs": {
9 "url": "https://github.com/jonschlinkert/expand-tilde/issues"
10 },
11 "license": "MIT",
12 "files": [
13 "index.js"
14 ],
15 "main": "index.js",
16 "engines": {
17 "node": ">=0.10.0"
18 },
19 "scripts": {
20 "test": "mocha"
21 },
22 "devDependencies": {
23 "gulp-format-md": "^0.1.9",
24 "is-windows": "^0.2.0",
25 "mocha": "^2.5.3"
26 },
27 "keywords": [
28 "cwd",
29 "expand",
30 "expansion",
31 "filepath",
32 "home",
33 "path",
34 "pwd",
35 "tilde",
36 "user",
37 "userhome"
38 ],
39 "verb": {
40 "run": true,
41 "toc": false,
42 "layout": "default",
43 "tasks": [
44 "readme"
45 ],
46 "plugins": [
47 "gulp-format-md"
48 ],
49 "related": {
50 "list": [
51 "braces",
52 "expand-brackets",
53 "is-glob",
54 "micromatch"
55 ]
56 },
57 "reflinks": [
58 "verb"
59 ],
60 "lint": {
61 "reflinks": true
62 }
63 },
64 "dependencies": {
65 "homedir-polyfill": "^1.0.1"
66 }
67}