-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "relative-dest",
"description": "Calculate the relative path from a file's destination path to another directory or file.",
"version": "0.1.0",
"homepage": "https://github.com/jonschlinkert/relative-dest",
"author": {
"name": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert"
},
"repository": {
"type": "git",
"url": "git://github.com/jonschlinkert/relative-dest.git"
},
"bugs": {
"url": "https://github.com/jonschlinkert/relative-dest/issues"
},
"license": {
"type": "MIT",
"url": "https://github.com/jonschlinkert/relative-dest/blob/master/LICENSE-MIT"
},
"main": "index.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha -R spec"
},
"dependencies": {
"relative": "^1.1.0"
},
"devDependencies": {
"mocha": "*",
"should": "*"
},
"keywords": [
"assets",
"calculate",
"dir",
"directory",
"file",
"filepath",
"fp",
"path",
"public",
"resolve",
"url"
]
}