-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.55 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
{
"name": "@zwave-js/fmt",
"version": "1.0.6",
"description": "Dprint wrapper to programmatically format source files in memory",
"publishConfig": {
"access": "public"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"keywords": [],
"files": [
"build/",
"plugins/"
],
"author": {
"name": "AlCalzone",
"email": "d.griesel@gmx.net"
},
"license": "MIT",
"homepage": "https://github.com/zwave-js/fmt#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/zwave-js/fmt.git"
},
"bugs": {
"url": "https://github.com/zwave-js/fmt/issues"
},
"funding": {
"url": "https://github.com/sponsors/AlCalzone/"
},
"engines": {
"node": ">=14.13.0 <15 || >= 16 <16.9.0 || >16.9.0"
},
"scripts": {
"clean": "del-cli build/",
"build": "yarn clean && tsc",
"prepack": "yarn build",
"test": "node test/test.js",
"prepublish": "yarn test",
"release": "release-script"
},
"dependencies": {
"json5": "^2.2.3"
},
"devDependencies": {
"@alcalzone/release-script": "^5.0.0",
"@dprint/formatter": "^0.5.1",
"@dprint/json": "^0.21.1",
"@dprint/markdown": "^0.20.0",
"@dprint/typescript": "^0.95.13",
"@tsconfig/node16": "^16.1.6",
"@types/node": "^16.18.126",
"del-cli": "^5.1.0",
"dprint": "^0.51.1",
"typescript": "^5.7.3"
},
"peerDependencies": {
"@dprint/formatter": "^0.4.1",
"@dprint/json": "^0.21.0",
"@dprint/markdown": "^0.20.0",
"@dprint/typescript": "^0.95.11"
},
"packageManager": "yarn@4.17.0"
}