forked from tjanczuk/edge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.04 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
{
"name": "edge",
"author": {
"name": "Tomasz Janczuk <tomasz@janczuk.org>",
"url": "http://tomasz.janczuk.org",
"twitter": "tjanczuk"
},
"version": "8.2.1",
"description": "Edge.js: run .NET and Node.js in-process on Windows, Mac OS, and Linux",
"tags": [
"owin",
"edge",
"net",
"clr",
"coreclr",
"c#",
"mono",
"managed",
".net"
],
"main": "./lib/edge.js",
"engines": {
"node": ">= 6"
},
"licenses": [
{
"type": "Apache",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"dependencies": {
"edge-cs": "1.2.1",
"nan": "^2.0.9"
},
"devDependencies": {
"mocha": "2.5.3",
"jshint": "1.1.0"
},
"homepage": "https://github.com/tjanczuk/edge",
"repository": {
"type": "git",
"url": "git@github.com:tjanczuk/edge.git"
},
"bugs": {
"url": "http://github.com/tjanczuk/edge/issues"
},
"scripts": {
"install": "node tools/install.js",
"test": "node tools/test.js",
"jshint": "node ./tools/runJsHint.js"
}
}