-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
42 lines (42 loc) · 1.12 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
{
"name": "gamecontroller.js",
"version": "1.5.0",
"description": "A JavaScript library that lets you handle, configure, and use gamepad and controllers on a browser, using the Gamepad API",
"main": "dist/gamecontroller.min.js",
"scripts": {
"build": "webpack --output-filename gamecontroller.min.js --mode production",
"build:dev": "webpack --output-filename gamecontroller.js --mode development",
"test": "jest --coverage"
},
"devDependencies": {
"@babel/preset-env": "^7.13.8",
"jest": "^26.6.3",
"webpack": "^5.4.0",
"webpack-cli": "^4.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alvaromontoro/gamecontrol.git"
},
"bugs": {
"url": "https://github.com/alvaromontoro/gamecontrol/issues"
},
"homepage": "https://github.com/alvaromontoro/gamecontrol",
"author": "Alvaro Montoro",
"license": "MIT",
"keywords": [
"game control",
"gamepad",
"game controller",
"game control",
"controller",
"gaming",
"web api",
"html5 api",
"gamepad api"
],
"directories": {
"example": "examples",
"test": "tests"
}
}