-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.08 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
35
36
37
38
39
40
41
42
43
{
"name": "regattalistner",
"version": "1.4.1",
"description": "Regatta on Raspberry Pi",
"main": "./build/main.js",
"scripts": {
"build": "rimraf ./build && tsc",
"start:dev": "nodemon",
"start": "npm run build && node build/main.js",
"lint": "eslint . --ext .ts",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"bin": {
"regattalistner": "./build/main.js"
},
"keywords": [
"command line",
"regatta",
"cli",
"terminal"
],
"author": "Morten Berg <[email protected]>",
"license": "MIT",
"dependencies": {
"i2c-bus": "^5.2.0",
"ws": "^7.3.0"
},
"devDependencies": {
"@types/i2c-bus": "^5.1.0",
"@types/node": "^14.0.11",
"@types/ws": "^7.2.5",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"typescript": "^3.9.5"
}
}