-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.54 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
{
"name": "yagcl.js",
"version": "1.0.2",
"description": "Yet Another Game Controller Library",
"main": "./dist/yagcl.js",
"types": "./dist/yagcl.d.ts",
"files": [
"dist",
"dist.browser"
],
"scripts": {
"build:dev": "webpack --mode=development && webpack --config browser.config.js --mode=development",
"build:prod": "webpack --mode=production && webpack --config browser.config.js --mode=production",
"prepublishOnly": "webpack --mode=production",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/newclarityex/YAGCL.js.git"
},
"keywords": [
"gamepad",
"controller",
"html5 controller"
],
"author": "newclarityex",
"license": "MIT",
"bugs": {
"url": "https://github.com/newclarityex/YAGCL.js/issues",
"email": "newclearex@gmail.com"
},
"homepage": "https://github.com/newclarityex/YAGCL.js#readme",
"devDependencies": {
"@babel/core": "^7.13.15",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.2.1",
"ts-loader": "^8.1.0",
"typescript": "^4.2.4",
"webpack": "^5.70.0",
"webpack-cli": "^4.6.0"
}
}