-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
56 lines (56 loc) · 1.14 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
{
"name": "openvr",
"version": "0.1.0",
"description": "Node bindings to OpenVR through headless-gl",
"homepage": "https://github.com/psigen/node-openvr#readme",
"license": "MIT",
"keywords": [
"glfw",
"opengl",
"openvr",
"vr",
"3d",
"graphics"
],
"author": "Pras Velagapudi <[email protected]>",
"maintainers": [
{
"name": "Pras Velagapudi",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/node-xr/node-openvr.git"
},
"bugs": {
"url": "https://github.com/node-xr/node-openvr/issues"
},
"main": "index.js",
"scripts": {
"install": "node-gyp rebuild",
"lint": "eslint .",
"test": "mocha"
},
"directories": {
"src": "src",
"lib": "lib",
"test": "test"
},
"engines": {
"node": ">=3.0.0"
},
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.14.0"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"chai": "^4.3.4",
"dirty-chai": "^2.0.1",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.3",
"mocha": "^10.2.0"
}
}