]> gerrit.simantics Code Review - simantics/district.git/blob - org.simantics.maps.server/node/node-v4.8.0-win-x64/node_modules/npm/node_modules/path-is-inside/package.json
Adding integrated tile server
[simantics/district.git] / org.simantics.maps.server / node / node-v4.8.0-win-x64 / node_modules / npm / node_modules / path-is-inside / package.json
1 {
2   "name": "path-is-inside",
3   "description": "Tests whether one path is inside another path",
4   "keywords": [
5     "path",
6     "directory",
7     "folder",
8     "inside",
9     "relative"
10   ],
11   "version": "1.0.1",
12   "author": {
13     "name": "Domenic Denicola",
14     "email": "domenic@domenicdenicola.com",
15     "url": "http://domenic.me"
16   },
17   "license": "WTFPL",
18   "repository": {
19     "type": "git",
20     "url": "git://github.com/domenic/path-is-inside.git"
21   },
22   "bugs": {
23     "url": "http://github.com/domenic/path-is-inside/issues"
24   },
25   "main": "lib/path-is-inside.js",
26   "scripts": {
27     "test": "mocha",
28     "lint": "jshint lib"
29   },
30   "devDependencies": {
31     "jshint": "~2.3.0",
32     "mocha": "~1.15.1"
33   },
34   "readme": "# Is This Path Inside This Other Path?\n\nIt turns out this question isn't trivial to answer using Node's built-in path APIs. A naive `indexOf`-based solution will fail sometimes on Windows, which is case-insensitive (see e.g. [isaacs/npm#4214][]). You might then think to be clever with `path.resolve`, but you have to be careful to account for situations whether the paths have different drive letters, or else you'll cause bugs like [isaacs/npm#4313][]. And let's not even get started on trailing slashes.\n\nThe **path-is-inside** package will give you a robust, cross-platform way of detecting whether a given path is inside another path.\n\n## Usage\n\nPretty simple. First the path being tested; then the potential parent. Like so:\n\n```js\nvar pathIsInside = require(\"path-is-inside\");\n\npathIsInside(\"/x/y/z\", \"/x/y\") // true\npathIsInside(\"/x/y\", \"/x/y/z\") // false\n```\n\n## OS-Specific Behavior\n\nLike Node's built-in path module, path-is-inside treats all file paths on Windows as case-insensitive, whereas it treats all file paths on *-nix operating systems as case-sensitive. Keep this in mind especially when working on a Mac, where, despite Node's defaults, the OS usually treats paths case-insensitively.\n\nIn practice, this means:\n\n```js\n// On Windows\n\npathIsInside(\"C:\\\\X\\\\Y\\\\Z\", \"C:\\\\x\\\\y\") // true\n\n// On *-nix, including Mac OS X\n\npathIsInside(\"/X/Y/Z\", \"/x/y\") // false\n```\n\n[isaacs/npm#4214]: https://github.com/isaacs/npm/pull/4214\n[isaacs/npm#4313]: https://github.com/isaacs/npm/issues/4313\n",
35   "readmeFilename": "README.md",
36   "homepage": "https://github.com/domenic/path-is-inside",
37   "_id": "path-is-inside@1.0.1",
38   "dist": {
39     "shasum": "c5e6c4764c4cd41f2ac839c53be5621d085726b3"
40   },
41   "_from": "path-is-inside@1.0.1",
42   "_resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.1.tgz"
43 }