forked from node-xr/node-openvr
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.23 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.23 KB
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
{
"name": "node-openvr",
"version": "0.0.54",
"description": "Node bindings to OpenVR",
"homepage": "https://github.com/modulesio/node-openvr#readme",
"license": "MIT",
"keywords": [
"glfw",
"opengl",
"openvr",
"vr",
"3d",
"graphics"
],
"author": "Avaer Kazmer <a@modules.io>",
"repository": {
"type": "git",
"url": "git+https://github.com/modulesio/node-openvr.git"
},
"bugs": {
"url": "https://github.com/modulesio/node-openvr/issues"
},
"main": "index.js",
"scripts": {
"preinstall": "npm install native-openvr-deps --no-package-lock",
"install": "node-gyp rebuild",
"lint": "eslint .",
"test": "mocha"
},
"directories": {
"src": "src",
"lib": "lib",
"test": "test"
},
"engines": {
"node": ">=3.0.0"
},
"dependencies": {
"bindings": "^1.2.1",
"nan": "^2.1.0",
"native-openvr-deps": "0.0.1",
"node-webgl2": "0.0.76"
},
"devDependencies": {
"babel-eslint": "^7.1.0",
"chai": "^3.5.0",
"dirty-chai": "^1.2.2",
"eslint": "^3.10.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.1.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.6.0",
"mocha": "^3.2.0"
}
}