-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.12 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.12 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "gameinputjs",
"type": "module",
"repository": {
"url": "https://github.com/lunarcloud/gameinputjs.git"
},
"version": "13.2.7",
"main": "src/gameinput.js",
"module": "src/gameinput.js",
"types": "types/gameinput.d.ts",
"exports": {
".": {
"types": "./types/gameinput.d.ts",
"default": "./src/gameinput.js"
},
"./schema": {
"types": "./types/gameinput-schema.d.ts",
"default": "./src/gameinput-schema.js"
},
"./models": {
"types": "./types/gameinput-models.d.ts",
"default": "./src/gameinput-models.js"
}
},
"description": "Browser library to upgrade the Gamepad API experience",
"private": false,
"scripts": {
"lint": "npx eslint --ignore-path .gitignore --ext .js .",
"lint-fix": "npx eslint --ignore-path .gitignore --ext .js . --fix",
"type-check": "npx tsc --noEmit",
"build:types": "npx tsc --project tsconfig.types.json",
"docs": "node scripts/clean-docs.mjs && npx jsdoc -c jsdoc.conf.json",
"pre-build": "node scripts/pre-build.mjs",
"build": "npm run pre-build && node scripts/copy-src.mjs",
"serve": "npm run build && npx serve dist",
"build-prod": "npm run build && npm run docs",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest",
"test:coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --coverage",
"outdated": "npx npm-check-updates",
"outdated:minor": "npx npm-check-updates --target minor",
"outdated:patch": "npx npm-check-updates --target patch"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"cross-env": "^10.1.0",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-editorconfig": "^4.0.3",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^62.8.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"jest": "^30.3.0",
"npm-check-updates": "^20.0.0",
"jest-environment-jsdom": "^30.3.0",
"jsdoc": "^4.0.5",
"jsdoc-tsimport-plugin": "^1.0.5",
"serve": "^14.2.6",
"typescript": "^5.9.3"
},
"license": "MIT",
"author": "Samuel Sarette",
"engines": {
"node": ">=20.19.4",
"npm": ">=9.2.0"
},
"jest": {
"testEnvironment": "jsdom",
"verbose": true,
"reporters": [
[
"github-actions",
{
"silent": false
}
],
"default"
],
"testLocationInResults": true,
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/*.test.js"
],
"coverageThreshold": {
"global": {
"branches": 38,
"functions": 52,
"lines": 40
}
}
},
"keywords": [
"gamepad",
"client",
"gaming",
"xbox",
"dualshock",
"joystick"
]
}