forked from thomaspeklak/hyperspace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.46 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "hyperspace",
"version": "2.1.4",
"description": "render streams of html on the client and the server",
"main": "index.js",
"browser": "browser.js",
"dependencies": {
"domify": "~0.2.0",
"he": "^0.5.0",
"hyperglue": "^1.3.0",
"hyperstream": "^1.0.0",
"jsonify": "~0.0.0",
"split": "~0.3.0",
"stream-combiner2": "^1.0.1",
"stream-splicer": "^1.3.0",
"through2": "^1.0.0",
"utf8-stream": "~0.0.0",
"isarray": "~0.0.1",
"has": "~0.0.1"
},
"devDependencies": {
"concat-stream": "^1.4.4",
"tape": "^2.12.3"
},
"scripts": {
"test": "tape test/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/substack/hyperspace.git"
},
"homepage": "https://github.com/substack/hyperspace",
"keywords": [
"html",
"browser",
"server",
"render",
"seo",
"indexable",
"realtime",
"template"
],
"author": {
"name": "James Halliday",
"email": "[email protected]",
"url": "http://substack.net"
},
"license": "MIT",
"testling": {
"files": [
"test/*.js",
"test/browser/*.js"
],
"browsers": [
"ie/8..latest",
"firefox/15",
"firefox/latest",
"firefox/nightly",
"chrome/15",
"chrome/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"
]
}
}