-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
51 lines (51 loc) · 1.13 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": "json-globals",
"version": "0.2.1",
"description": "Embed JSON in a page as temporary global data",
"keywords": [],
"author": "Raynos <[email protected]>",
"repository": "git://github.com/Raynos/json-globals.git",
"main": "index",
"homepage": "https://github.com/Raynos/json-globals",
"contributors": [
{
"name": "Raynos"
}
],
"bugs": {
"url": "https://github.com/Raynos/json-globals/issues",
"email": "[email protected]"
},
"dependencies": {
"global": "~4.3.0",
"serialize-javascript": "^1.1.2"
},
"devDependencies": {
"tape": "~4.4.0"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/Raynos/json-globals/raw/master/LICENSE"
}
],
"scripts": {
"test": "node ./test/index.js"
},
"testling": {
"files": "test/index.js",
"browsers": [
"ie/8..latest",
"firefox/16..latest",
"firefox/nightly",
"chrome/22..latest",
"chrome/canary",
"opera/12..latest",
"opera/next",
"safari/5.1..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2..latest"
]
}
}