-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 847 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
{
"name": "champion",
"version": "2.0.1",
"description": "Get a League of Legends champion from their key.",
"keywords": [
"league-of-legends"
],
"repository": "KenanY/champion",
"license": "MIT",
"author": "Kenan Yildirim <[email protected]> (http://kenany.me/)",
"main": "index.js",
"files": [
"lib/champions.js",
"index.js",
"LICENSE.txt"
],
"directories": {
"test": "test"
},
"scripts": {
"test": "tape test/index.js"
},
"devDependencies": {
"tape": "^2.12.0"
},
"testling": {
"files": "test/*.js",
"browsers": [
"ie/6..latest",
"firefox/3",
"firefox/latest",
"chrome/4",
"chrome/latest",
"opera/10",
"opera/latest",
"safari/4",
"safari/latest",
"ipad/6",
"iphone/6",
"android-browser/4.2"
]
}
}