-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.89 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.89 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
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": "@zwave-js/log-transports",
"version": "3.0.0",
"private": true,
"description": "A collection of log transports for node-zwave-js",
"keywords": [],
"author": {
"name": "AlCalzone",
"email": "d.griesel@gmx.net"
},
"contributors": [],
"license": "MIT",
"homepage": "https://github.com/zwave-js/log-transports#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/zwave-js/log-transports.git"
},
"bugs": {
"url": "https://github.com/zwave-js/log-transports/issues"
},
"funding": {
"url": "https://github.com/sponsors/AlCalzone/"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@alcalzone/release-script": "3.5.9",
"@alcalzone/release-script-plugin-license": "3.5.9",
"@tsconfig/node12": "^1.0.11",
"@types/jest": "^29.2.5",
"@types/logfmt": "^1.2.3",
"@types/node": "^18.15.11",
"@types/triple-beam": "^1.3.2",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"esbuild": "^0.17.19",
"esbuild-jest": "^0.5.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.2",
"ts-node": "^10.9.1",
"typescript": "~4.9.5"
},
"scripts": {
"build": "tsc -b tsconfig.build.json",
"watch": "yarn run build --watch",
"test:reset": "jest --clear-cache",
"test:ts": "jest",
"test:ci": "yarn run test:ts --runInBand",
"test:watch": "yarn run test:ts --watch",
"test": "yarn run test:watch",
"lint:ts": "eslint --ext .ts \"packages/*/src/**/*.ts\"",
"lint": "yarn run lint:ts",
"release": "release-script"
},
"readme": "README.md",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "yarn@3.2.0"
}