-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 871 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": "sdraw",
"version": "0.1.2",
"description": "Simple drawing application for kids, can be controlled via mouse, keyboard or gamepad.",
"private": true,
"main": "index.mjs",
"scripts": {
"test": "test",
"start": "./server.sh",
"format": "prettier . --write",
"format:ci": "prettier . --list-different",
"lint": "eslint . --ext .js,.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/comatory/sdraw.git"
},
"keywords": [
"draw",
"web",
"mouse",
"keyboard",
"gamepad",
"html",
"kid"
],
"author": "Ondřej Synáček <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/comatory/sdraw/issues"
},
"homepage": "https://github.com/comatory/sdraw#readme",
"devDependencies": {
"eslint": "^8.52.0",
"prettier": "^3.0.3"
}
}