-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 979 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
39
40
41
42
43
44
{
"name": "node-lgsdk",
"version": "0.3.0",
"description": "A wrapper for Logitech Gaming SDKs in node.js",
"main": "./dist/index.js",
"config": {
"gkey": "8.57.148",
"lcd": "8.57.148"
},
"scripts": {
"clean": "rimraf ./dist",
"test": "npm run clean && npm run tsc && npm run test:samples",
"test:samples": "node dist/tests/test.js",
"tsc": "tsc"
},
"author": "Martin Boekhoff <[email protected]>",
"license": "ISC",
"engines": {
"node": "^8.9.4"
},
"os": [
"win32"
],
"cpu": [
"x64",
"ia32"
],
"dependencies": {
"bmp-js": "0.0.3",
"ffi": "git+https://github.com/node-ffi/node-ffi.git",
"ref": "1.3.5",
"ref-array": "1.2.0",
"ref-wchar": "1.0.2"
},
"devDependencies": {
"@types/ffi": "0.1.0",
"@types/node": "8.10.8",
"@types/ref": "0.0.27",
"@types/ref-array": "0.0.27",
"@types/ref-struct": "0.0.27",
"rimraf": "2.6.2",
"typescript": "2.8.1"
}
}