-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
47 lines (47 loc) · 1008 Bytes
/
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
{
"name": "autolink",
"version": "0.0.2",
"description": "Autolink http(s) links in your DOM",
"main": "lib/autolink.js",
"scripts": {
"test": "phantomjs phantom.js"
},
"repository": {
"type": "git",
"url": "git://github.com/gitterHQ/autolink.git"
},
"author": "Andrew Newdigate",
"license": "MIT",
"bugs": {
"url": "https://github.com/gitterHQ/autolink/issues"
},
"homepage": "https://github.com/gitterHQ/autolink",
"devDependencies": {
"jstest": "~1.0.4",
"wake": "~0.3.1"
},
"wake": {
"javascript": {
"sourceDirectory": "lib",
"targetDirectory": "bin",
"targets": {
"autolink.js": [
"autolink.js"
]
}
}
},
"testling": {
"html": "tests/browser.html",
"browsers": [
"ie/9..latest",
"chrome/23..latest",
"firefox/22..latest",
"safari/latest",
"opera/latest",
"iphone/6..latest",
"ipad/6..latest",
"android-browser/latest"
]
}
}