-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
34 lines (34 loc) · 863 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
{
"name": "gamepad",
"version": "1.6.0",
"description": "node bindings to the Gamepad library",
"author": "Tim Caswell <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/creationix/node-gamepad/issues"
},
"homepage": "https://github.com/creationix/node-gamepad",
"main": "gamepad.js",
"repository": {
"type": "git",
"url": "https://github.com/creationix/node-gamepad.git"
},
"keywords": [
"gamepad",
"joystick"
],
"scripts": {
"build": "node-gyp build",
"test": "echo \"Error: no test specified\" && exit 1",
"install": "prebuild-install || node-gyp rebuild",
"prebuild": "prebuild --all --strip --verbose"
},
"dependencies": {
"bindings": "^1.3.0",
"nan": "^2.14.0",
"prebuild-install": "^2.5.1"
},
"devDependencies": {
"prebuild": "^9.0.1"
}
}