-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@yesbotics/simple-serial-protocol-node",
"version": "3.0.0",
"description": "General Purpose Library for the communication between Node.js applications and Arduino devices. Powered by the usage of resource-efficient and microcontroller-friendly Primitive Dataypes.",
"author": "Albrecht Nitsche, Jens Kabisch",
"license": "MIT",
"homepage": "https://github.com/yesbotics/simple-serial-protocol-node",
"engines": {
"node": ">=12.0.0"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "jest",
"test:w": "jest --watchAll --runInBand --silent=false --verbose",
"clean": "rimraf ./dist",
"list-serial-ports:linux": "dmesg | grep tty",
"prepublishOnly": "npm run build && npm run test && npm run readme",
"build": "npm run clean && npm run generate-barrels && tsc",
"build:w": "npm run build && nodemon --config nodemon.build.json",
"readme": "embedme README.md",
"readme:w": "npm run readme && nodemon --config nodemon.readme.json",
"generate-barrels": "barrelsby --config barrelsby.json",
"start": "concurrently \"npm run build:w\" \"npm run readme:w\"",
"linker": "npm link"
},
"repository": {
"type": "git",
"url": "[email protected]:yesbotics/simple-serial-protocol-node.git"
},
"bugs": {
"url": "https://github.com/yesbotics/simple-serial-protocol-node/issues"
},
"keywords": [
"node",
"node.js",
"arduino",
"microcontroller",
"serial",
"protocol",
"c/c++",
"c/cpp",
"iot"
],
"dependencies": {
"serialport": "latest"
},
"devDependencies": {
"@types/jest": "latest",
"@types/serialport": "latest",
"barrelsby": "^2.2.0",
"concurrently": "latest",
"embedme": "^1.18.1",
"jest": "latest",
"nodemon": "latest",
"rimraf": "latest",
"source-map-support": "latest",
"ts-jest": "latest",
"tslint": "latest",
"typescript": "latest"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": "^.+\\.spec\\.ts$"
},
"directories": {
"example": "examples"
}
}