-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.17 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
{
"name": "@mikaello/emit-punch-cards-communication",
"version": "1.0.1",
"description": "Tools for communicating with EMIT punch cards",
"main": "dist/index.js",
"module": "dist/index.js",
"type": "module",
"scripts": {
"clean": "rm -rf dist/",
"build": "tsc -b",
"prepublishOnly": "yarn build",
"lint": "prettier --check .",
"format": "prettier --write .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikaello/emit-punch-cards-communication.git"
},
"keywords": [
"emit",
"ekt",
"orienteering",
"serial",
"webusb"
],
"browserslist": [
"last 1 Chrome versions"
],
"prettier": {
"trailingComma": "all",
"proseWrap": "always"
},
"author": "mikaello",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/mikaello/emit-punch-cards-communication/issues"
},
"homepage": "https://github.com/mikaello/emit-punch-cards-communication#readme",
"dependencies": {},
"devDependencies": {
"@types/jest": "29.5.14",
"jest": "29.7.0",
"prettier": "3.3.3",
"ts-jest": "29.2.5",
"typescript": "5.6.3",
"web-streams-polyfill": "4.0.0"
}
}