-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.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
49
50
51
{
"name": "favicolor",
"version": "1.0.1",
"description": "Set a page's favicon to a solid color",
"main": "index.js",
"scripts": {
"browser-test": "browserify test/test.js | testling",
"test": "jshint index.js test/test.js && jscs index.js test/test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/CMTegner/favicolor"
},
"keywords": [
"favicon-color",
"favicon",
"favico",
"solid",
"color",
"icon"
],
"author": "Christian Tegnér",
"license": "ISC",
"bugs": {
"url": "https://github.com/CMTegner/favicolor/issues"
},
"homepage": "http://favicolor.ima.computer",
"devDependencies": {
"browserify": "^5.10.1",
"jscs": "^1.5.9",
"jshint": "^2.5.4",
"tape": "^2.14.0",
"testling": "^1.7.0"
},
"testling": {
"files": "test/test.js",
"browsers": [
"ie/6..latest",
"chrome/20",
"chrome/latest",
"ff/3.5..4",
"ff/latest",
"safari/4..latest",
"opera/10..12",
"opera/latest",
"iphone/latest",
"ipad/latest",
"android-browser/latest"
]
}
}