-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1 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
{
"name": "html-tetris",
"version": "0.1.0",
"description": "tetris game rendered via HTML",
"main": "index.js",
"scripts": {
"lint": "eslint --ext .mjs --ext .js src/",
"dev": "NODE_ENV=development live-server --port=8000 --watch=src/ --open=src/index.html?debug=1",
"coverage": "NODE_OPTIONS='--experimental-loader @istanbuljs/esm-loader-hook' ./node_modules/.bin/nyc --reporter=html npm run test && open coverage/index.html",
"format": "pretty-quick --staged",
"prepare": "husky install",
"test": "mocha --require esm --recursive ./**/*.test.mjs"
},
"keywords": [
"tetris",
"game",
"html",
"js"
],
"author": "Ondřej Synáček <ondrej@synacek.org>",
"license": "ISC",
"devDependencies": {
"@istanbuljs/esm-loader-hook": "^0.2.0",
"chai": "^4.3.6",
"eslint": "^8.25.0",
"esm": "^3.2.25",
"husky": "^8.0.1",
"live-server": "^1.2.2",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3"
}
}