-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 827 Bytes
/
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
{
"name": "nes-cntlr",
"version": "4.0.3",
"description": "Javascript NES controller emulator for keyboards and touch devices",
"author": ", <moi@smnarnold.com> (https://smnarnold.com)",
"browser": "dist/nes-cntlr.js",
"unpkg": "dist/nes-cntlr.js",
"scripts": {
"start": "webpack",
"dev": "webpack"
},
"files": [
"dist"
],
"keywords": [
"Nintendo",
"NES",
"Controller",
"Retro"
],
"dependencies": {
"lodash": "^4.17.21"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smnarnold/nes-cntlr.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/smnarnold/nes-cntlr/issues"
},
"homepage": "https://github.com/smnarnold/nes-cntlr#readme",
"devDependencies": {
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
}
}