-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
{
"name": "gamepad-helper",
"version": "1.2.3",
"description": "Wrapper class for the HTML5 Gamepad API.",
"keywords": [
"javascript",
"npm",
"typescript",
"html5",
"js",
"npm-package",
"gamepad",
"javascript-game",
"gamepad-api"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"repository": "https://github.com/cdleveille/gamepad-helper.git",
"author": "Chris Leveille <[email protected]>",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"lint": "eslint --ext .ts . && prettier --check .",
"format": "eslint --fix --ext .ts . && prettier --write .",
"build": "tsc",
"pack:light": "yarn build && npm pack --dry-run",
"pack:release": "yarn build && npm pack",
"release": "yarn build && npm publish"
},
"devDependencies": {
"@types/node": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
},
"exports": "./lib/index.js"
}