forked from lydell/resolve-url
-
Notifications
You must be signed in to change notification settings - Fork 0
/
x-package.json5
50 lines (50 loc) · 1002 Bytes
/
x-package.json5
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
49
50
{
name: "resolve-url",
version: "0.2.1",
author: "Simon Lydell",
license: "MIT",
description: "Like Node.js’ `path.resolve`/`url.resolve` for the browser.",
keywords: [
"resolve",
"url"
],
main: "resolve-url.js",
overlay: {
npm: {
repository: "lydell/resolve-url",
scripts: {
test: "jshint resolve-url.js test/ && testling -u"
},
devDependencies: {
"testling": "~1.6.0",
"jshint": "~2.4.3",
"tape": "~2.5.0"
},
testling: {
files: "test/*.js",
browsers: [
"ie/8..latest",
"chrome/latest",
"firefox/latest",
"opera/12",
"opera/latest",
"safari/5",
"iphone/6",
"android-browser/4"
]
}
},
component: {
repo: "lydell/resolve-url",
scripts: [
"resolve-url.js"
]
},
bower: {
authors: ["Simon Lydell"],
ignore: [
".*"
]
}
}
}