forked from agracio/electron-edge-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.15 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
{
"name": "electron-edge-js",
"author": {
"name": "Tomasz Janczuk <[email protected]>",
"url": "http://tomasz.janczuk.org",
"twitter": "tjanczuk"
},
"version": "12.13.0",
"description": "Edge.js: run .NET and Node.js in-process on Electron",
"tags": [
"owin",
"edge",
"net",
"clr",
"coreclr",
"c#",
"mono",
"managed",
".net",
"electron"
],
"keywords": [
"owin",
"edge",
"net",
"clr",
"coreclr",
"c#",
"mono",
"managed",
".net",
"electron"
],
"main": "./lib/edge.js",
"types": "electron-edge-js.d.ts",
"engines": {
"node": ">= 6"
},
"license": "Apache-2.0",
"dependencies": {
"edge-cs": "1.2.1",
"nan": "^2.14.0"
},
"devDependencies": {
"mocha": "5.1.1",
"mocha-junit-reporter": "^1.17.0"
},
"homepage": "https://github.com/agracio/electron-edge-js",
"repository": {
"type": "git",
"url": "[email protected]:agracio/electron-edge-js.git"
},
"bugs": {
"url": "https://github.com/agracio/electron-edge-js/issues"
},
"scripts": {
"install": "node tools/install.js",
"test": "node tools/test.js"
}
}