-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.37 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
{
"name": "@lightlabs/ryderserial-proto",
"version": "0.0.5",
"description": "A library to facilitate communications between an application and Ryder device",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"prepare": "npm run prettier && npm run lint && npm run build",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"prettier": "prettier --write .",
"lint": "prettier --check . && eslint . --ext .ts --quiet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Light-Labs/ryderserial-proto.git"
},
"author": "Marvin Janssen",
"contributors": [
"Marvin Janssen",
"Chaz Kiker <[email protected]> (https://github.com/chazkiker2)"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/Light-Labs/ryderserial-proto/issues"
},
"homepage": "https://github.com/Light-Labs/ryderserial-proto#readme",
"dependencies": {
"@types/node": "^15.3.0",
"@types/serialport": "^8.0.1",
"serialport": "^9.0.6"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.27.0",
"prettier": "2.3.0",
"typescript": "^4.2.4"
}
}