-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
38 lines (38 loc) · 862 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
{
"name": "hypernal",
"version": "0.3.0",
"description": "Renders terminal output as html to simplify reusing server side modules in the browser.",
"main": "index.js",
"scripts": {
"test": "echo 'no tests yet :('",
"demo": "node example/build && npm install opener && opener example/index.html"
},
"repository": {
"type": "git",
"url": "git://github.com/thlorenz/hypernal.git"
},
"homepage": "https://github.com/thlorenz/hypernal",
"dependencies": {
"through": "~2.3.4"
},
"devDependencies": {
"browserify": "~2.11.0",
"difflet": "~0.2.3"
},
"keywords": [
"terminal",
"render",
"browser",
"ansi",
"colors"
],
"author": {
"name": "Thorsten Lorenz",
"email": "[email protected]",
"url": "http://thlorenz.com"
},
"license": "MIT",
"engine": {
"node": ">=0.6"
}
}