-
-
Notifications
You must be signed in to change notification settings - Fork 1k
/
package.json
67 lines (67 loc) · 1.97 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
{
"name": "serialport-monorepo",
"private": true,
"version": "0.0.0",
"description": "Node.js packages to access serial ports, process data from them and speak many protocols",
"engines": {
"node": ">=16.0.0"
},
"license": "MIT",
"scripts": {
"build": "lerna run build",
"format": "npx prettier --write . && eslint packages test --fix",
"lint": "eslint packages test && npx prettier --check .",
"outdated": "lerna exec --no-bail npm outdated && npm outdated",
"publish": "lerna publish --exact",
"test:arduino": "TEST_PORT=$(./bin/find-arduino.ts) npm test",
"test:watch": "mocha -w",
"test": "nyc --reporter lcov --reporter text mocha",
"typecheck": "lerna exec tsc"
},
"repository": {
"type": "git",
"url": "git://github.com/serialport/node-serialport.git"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@serialport/bindings-cpp": "12.0.1",
"@tsconfig/node18": "18.2.1",
"@types/chai": "5.0.1",
"@types/chai-subset": "1.3.5",
"@types/debug": "4.1.12",
"@types/mocha": "10.0.10",
"@types/node": "22.8.2",
"@types/sinon": "17.0.3",
"@typescript-eslint/eslint-plugin": "8.18.1",
"@typescript-eslint/parser": "8.18.1",
"chai": "5.1.2",
"chai-subset": "1.6.0",
"esbuild": "0.24.2",
"esbuild-register": "3.6.0",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-mocha": "10.5.0",
"eslint-plugin-n": "17.15.1",
"eslint-plugin-promise": "7.2.1",
"lerna": "7.2.0",
"lerna-changelog": "2.2.0",
"mocha": "11.0.1",
"nyc": "17.1.0",
"prettier": "3.0.3",
"sinon": "19.0.2",
"typescript": "5.2.2"
},
"funding": "https://opencollective.com/serialport/donate",
"changelog": {
"labels": {
"breaking": ":boom: BREAKING CHANGES :boom:",
"feature-request": "Features",
"bug": "Bug Fixes",
"docs": "Documentation",
"internal": "Chores"
}
}
}