forked from avaer/node-openvr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 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
{
"name": "node-openvr",
"version": "0.1.0",
"description": "Node bindings to OpenVR",
"homepage": "https://github.com/kayteh/node-openvr#readme",
"license": "MIT",
"main": "untyped/main.js",
"keywords": [
"glfw",
"opengl",
"openvr",
"vr",
"3d",
"graphics"
],
"author": "Katalina T. <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/kayteh/node-openvr.git"
},
"bugs": {
"url": "https://github.com/kayteh/node-openvr/issues"
},
"scripts": {
"install": "npm-run-all clean:binding build:gyp",
"sample": "node samples/image-overlay/index.js",
"test": "jest --coverage",
"lint": "standard",
"lint:fix": "standard --fix",
"clean:binding": "rimraf build bin",
"clean:headers": "rimraf headers.js",
"build": "npm-run-all --parallel build:*",
"build:gyp": "node-gyp rebuild",
"build:headers": "node ./build-headers.js",
"watch": "npm-run-all --parallel watch:*",
"watch:gyp": "nodemon --watch src/binding --exec yarn build:gyp -e cpp,h",
"watch:lint": "nodemon --watch **/* --exec yarn lint"
},
"engines": {
"node": ">=3.0.0"
},
"dependencies": {
"bindings": "^1.3.0",
"nan": "^2.11.0"
},
"devDependencies": {
"standard": "^12.0.1",
"jest": "^23.5.0",
"nodemon": "^1.18.4",
"npm-run-all": "^4.1.3",
"rimraf": "^2.6.2"
}
}