generated from LizardByte/template-base
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.72 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.72 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
{
"name": "@lizardbyte/gamepad-helper",
"repository": {
"type": "git",
"url": "git+https://github.com/LizardByte/gamepad-helper.git"
},
"version": "0.0.0",
"description": "Helper library for Gamepad API. Helps with detecting type of gamepad and mapping to buttons and icons.",
"license": "MIT",
"funding": "https://app.lizardbyte.dev",
"homepage": "https://github.com/LizardByte/gamepad-helper#readme",
"bugs": {
"url": "https://github.com/LizardByte/gamepad-helper/issues"
},
"files": [
"assets/",
"dist/",
"src/",
"tests/",
"LICENSE",
"README.md"
],
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/preset-env": "7.29.0",
"@codecov/webpack-plugin": "1.9.1",
"@eslint/js": "10.0.1",
"@jest/globals": "30.3.0",
"@lizardbyte/shared-web": "2026.314.32913",
"babel-loader": "10.1.1",
"clean-jsdoc-theme": "4.3.0",
"cross-env": "10.1.0",
"eslint": "10.0.3",
"eslint-plugin-jest": "29.15.0",
"globals": "17.4.0",
"jest": "30.3.0",
"jest-environment-jsdom": "30.3.0",
"jest-junit": "16.0.0",
"jsdoc": "4.0.5",
"node-fetch": "3.3.2",
"npm-run-all": "4.1.5",
"postcss": "8.5.8",
"webpack": "5.105.4",
"webpack-cli": "7.0.0",
"webpack-dev-server": "5.2.3"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"testEnvironment": "jsdom"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"generate-docs": "jsdoc --configure jsdoc.json --verbose",
"start": "webpack serve",
"test": "npm-run-all test:unit test:report test:lint",
"test:unit": "jest --coverage",
"test:report": "jest --reporters=jest-junit",
"test:lint": "eslint ."
}
}