-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
73 lines (73 loc) · 2.19 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "hud-gamepad",
"description": "A Heads Up Display (HUD) for Gamepads, Keyboards, and more",
"author": "Eugene Yevhen Andruszczenko <[email protected]>",
"contributors": [
"32teeth <[email protected]> (https://github.com/32teeth)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/32teeth/hud-gamepad.git"
},
"license": "ISC",
"version": "0.6.7",
"keywords": [
"gaming",
"gamepad",
"game-pad",
"controller",
"hud",
"heads-up-display"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": "20.x",
"npm": "10.x"
},
"main": "index.js",
"files": [
"src/**/*",
"types/index.d.ts",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"type": "module",
"types": "index.d.ts",
"scripts": {
"clean": "npm run clean:all",
"clean:all": "npm run clean:node && npm run clean:example && npm run clean:pack",
"clean:node": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"clean:example": "cd example && npm run clean:node || true",
"clean:pack": "rm -f *.tgz || true",
"setup": "npm install && cd example && npm install",
"build": "npm pack",
"start": "cd example && live-server --port=8080 --host=192.168.86.166 --open=/index.html --mount=/src:../src",
"dev": "run-p dev:watch dev:serve",
"dev:init": "npm run clean && npm run setup && npm run build",
"dev:watch": "nodemon --watch src --exec 'npm run build'",
"dev:serve": "npm run start",
"publish:npm": "npm publish --registry https://registry.npmjs.org/",
"publish:github": "npm publish --registry https://npm.pkg.github.com/",
"publish": "npm run publish:npm && npm run publish:github",
"test": "mocha --require ./test/setup.js"
},
"postinstall": "npm i live-server -g",
"devDependencies": {
"chai": "^4.3.4",
"jsdom": "^25.0.1",
"mocha": "^9.1.3",
"nodemon": "^3.1.7",
"npm-run-all": "^4.1.5",
"sinon": "^19.0.2"
},
"bugs": {
"url": "https://github.com/32teeth/hud-gamepad/issues"
},
"homepage": "https://github.com/32teeth/hud-gamepad#readme",
"directories": {
"test": "test"
}
}