-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 840 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
{
"name": "nodeinjector",
"version": "1.0.0",
"description": "Enables node.js to inject DLL into a process on Windows.",
"author": "Undido (https://github.com/undido)",
"contributors": [{
"name": "Liam Mitchell",
"email": "[email protected]"
}],
"main": "./build/Release/injector",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"install": "node-gyp rebuild"
},
"repository": {
"type": "git",
"url": "https://github.com/undido/nodeinjector"
},
"keywords": [
"InjectDLL",
"Windows DLL Injection"
],
"license": "GNU GPL v3.0",
"gypfile": true,
"bugs": {
"url": "https://github.com/undido/nodeinjector/issues"
},
"homepage": "https://github.com/undido/nodeinjector",
"engine": ">=0.12.0",
"os": [ "win32" ],
"cpu": [ "x64", "ia32" ]
}