-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "xbox360-controller-ts",
"version": "0.1.0",
"description": "xbox360 controller in typescript implementation",
"main": "./lib/index.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "echo 'no test - now'",
"build": "tsc",
"start": "node -r ts-node/register/transpile-only src/examples/example.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jerzyadamowski/xbox360-controller-ts.git"
},
"keywords": [
"xbox360",
"typescript",
"controller",
"wireless"
],
"author": "Jerzy Adamowski (jerzyadamowski@outlook.com)",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/jerzyadamowski/xbox360-controller-ts/issues"
},
"homepage": "https://github.com/jerzyadamowski/xbox360-controller-ts#readme",
"dependencies": {
"@types/node": "^13.11.1",
"gamepad": "^1.6.0"
},
"devDependencies": {
"ts-node": "^8.8.2",
"typescript": "^3.8.3",
"minimist": ">=1.2.6"
},
"private": false
}