-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
34 lines (34 loc) · 1.06 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
{
"name": "lcdgame",
"version": "0.3.4",
"description": "LCD game library in html5/javascript, to recreate simulations of 80s Game & Watch by Nintendo and other electronic handheld games like Tandy, Sunwing, Mini Arcade etc.",
"main": "bin/lcdgame.min.js",
"scripts": {
"build": "esbuild src/index.js --bundle --banner=\"/*! LCD game JavaScript library -- by BdR 2018 */\" --minify --sourcemap --target=es2020 --outfile=bin/lcdgame.min.js",
"lint": "eslint games src --ext .js",
"lint:fix": "npm run lint -- --fix",
"serve:local": "serve ./",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BdR76/lcdgame.js.git"
},
"keywords": [
"lcd",
"game",
"80s",
"handheld"
],
"author": "Bas de Reuver <[email protected]>",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/BdR76/lcdgame.js/issues"
},
"homepage": "https://github.com/BdR76/lcdgame.js#readme",
"devDependencies": {
"esbuild": "^0.8.26",
"eslint": "^7.16.0",
"serve": "^11.3.0"
}
}