1
|
{
|
2
|
"name": "normalize-path",
|
3
|
"description": "Normalize slashes in a file path to be posix/unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes, unless disabled.",
|
4
|
"version": "3.0.0",
|
5
|
"homepage": "https://github.com/jonschlinkert/normalize-path",
|
6
|
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
|
7
|
"contributors": [
|
8
|
"Blaine Bublitz (https://twitter.com/BlaineBublitz)",
|
9
|
"Jon Schlinkert (http://twitter.com/jonschlinkert)"
|
10
|
],
|
11
|
"repository": "jonschlinkert/normalize-path",
|
12
|
"bugs": {
|
13
|
"url": "https://github.com/jonschlinkert/normalize-path/issues"
|
14
|
},
|
15
|
"license": "MIT",
|
16
|
"files": [
|
17
|
"index.js"
|
18
|
],
|
19
|
"main": "index.js",
|
20
|
"engines": {
|
21
|
"node": ">=0.10.0"
|
22
|
},
|
23
|
"scripts": {
|
24
|
"test": "mocha"
|
25
|
},
|
26
|
"devDependencies": {
|
27
|
"gulp-format-md": "^1.0.0",
|
28
|
"minimist": "^1.2.0",
|
29
|
"mocha": "^3.5.3"
|
30
|
},
|
31
|
"keywords": [
|
32
|
"absolute",
|
33
|
"backslash",
|
34
|
"delimiter",
|
35
|
"file",
|
36
|
"file-path",
|
37
|
"filepath",
|
38
|
"fix",
|
39
|
"forward",
|
40
|
"fp",
|
41
|
"fs",
|
42
|
"normalize",
|
43
|
"path",
|
44
|
"relative",
|
45
|
"separator",
|
46
|
"slash",
|
47
|
"slashes",
|
48
|
"trailing",
|
49
|
"unix",
|
50
|
"urix"
|
51
|
],
|
52
|
"verb": {
|
53
|
"toc": false,
|
54
|
"layout": "default",
|
55
|
"tasks": [
|
56
|
"readme"
|
57
|
],
|
58
|
"plugins": [
|
59
|
"gulp-format-md"
|
60
|
],
|
61
|
"related": {
|
62
|
"description": "Other useful path-related libraries:",
|
63
|
"list": [
|
64
|
"contains-path",
|
65
|
"is-absolute",
|
66
|
"is-relative",
|
67
|
"parse-filepath",
|
68
|
"path-ends-with",
|
69
|
"path-ends-with",
|
70
|
"unixify"
|
71
|
]
|
72
|
},
|
73
|
"lint": {
|
74
|
"reflinks": true
|
75
|
}
|
76
|
}
|
77
|
}
|