generated from reconbot/typescript-library-template
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
59 lines (59 loc) · 1.59 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
{
"name": "@serialport/binding-mock",
"version": "0.0.0-development",
"description": "The mock serialport bindings",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"exports": {
"require": "./dist/index.js",
"default": "./dist/index-esm.mjs"
},
"engines": {
"node": ">=16.0.0"
},
"repository": "[email protected]:serialport/binding-mock.git",
"homepage": "https://github.com/serialport/binding-mock",
"scripts": {
"test": "mocha",
"lint": "tsc && eslint lib/**/*.ts",
"format": "eslint lib/**/*.ts --fix",
"clean": "rm -rf dist-ts dist",
"build": "npm run clean && tsc -p tsconfig-build.json && rollup -c && node -r esbuild-register bundle-types",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release"
},
"keywords": [
"serialport-binding",
"debug"
],
"license": "MIT",
"devDependencies": {
"@microsoft/api-extractor": "7.36.4",
"@rollup/plugin-node-resolve": "15.2.1",
"@tsconfig/node18": "18.2.1",
"@types/chai": "4.3.20",
"@types/mocha": "10.0.10",
"@types/node": "22.10.2",
"@typescript-eslint/eslint-plugin": "8.18.2",
"@typescript-eslint/parser": "8.18.2",
"chai": "5.1.1",
"esbuild": "0.24.2",
"esbuild-register": "3.6.0",
"eslint": "8.57.1",
"mocha": "11.0.1",
"rollup": "3.28.1",
"semantic-release": "21.1.0",
"typescript": "5.1.6"
},
"mocha": {
"bail": true,
"require": [
"esbuild-register"
],
"spec": "lib/**/*-test.ts"
},
"dependencies": {
"@serialport/bindings-interface": "^1.2.1",
"debug": "^4.3.3"
}
}