-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.76 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 2.76 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@zokugun/jsonc-preprocessor",
"description": "Disable/enable/ignore blocks based on rules found in the JSONC text",
"version": "0.4.1",
"author": {
"name": "Baptiste Augrain",
"email": "daiyam@zokugun.org"
},
"license": "MIT",
"homepage": "https://github.com/zokugun/node-jsonc-preprocessor",
"repository": {
"type": "git",
"url": "git+https://github.com/zokugun/node-jsonc-preprocessor.git"
},
"bugs": {
"url": "https://github.com/zokugun/node-jsonc-preprocessor/discussions/categories/issue-triage"
},
"type": "module",
"exports": {
".": {
"import": "./lib/esm/index.mjs",
"require": "./lib/cjs/index.cjs"
}
},
"main": "lib/cjs/index.cjs",
"module": "lib/esm/index.mjs",
"typesVersions": {
"*": {
".": [
"./lib/cjs/index.d.cts"
]
}
},
"scripts": {
"audit:fix": "npm audit fix --min-release-age=0",
"build": "npm run clean && npm run build:lib",
"build:lib": "tsc-leda generate",
"build:package": "tsc-leda update-package && npm run lint:package",
"ci:lint": "zizmor .",
"ci:lint:fix": "zizmor . --fix=all",
"clean": "rimraf .src .test lib",
"compile:src": "tsc -p src",
"compile:test": "tsc -p test",
"lint": "xo",
"lint:all": "npm audit && npm run lint:package && npm run ci:lint && npm run lint",
"lint:fix": "xo --fix",
"lint:package": "fixpack || true",
"prepack": "npm run build",
"prepare": "husky; npm run lint:package",
"release": "release-it",
"test": "vitest run --reporter tree",
"test:coverage": "vitest run --reporter tree --coverage --coverage.reporter text",
"test:ui": "vitest --ui --coverage",
"test:watch": "vitest",
"update:artifacts": "artifact update",
"update:ci": "PINACT_MIN_AGE=7 pinact run --update",
"update:deps": "taze --all",
"watch:build": "tsc-watch -p src --onSuccess 'npm run build'",
"watch:src": "tsc-watch -p src",
"watch:test": "tsc-watch -p test"
},
"dependencies": {
"@zokugun/balanced-pairs": "0.2.0",
"compare-versions": "6.1.1"
},
"devDependencies": {
"@commitlint/cli": "20.5.3",
"@commitlint/config-conventional": "20.5.3",
"@types/node": "20.19.43",
"@vitest/coverage-v8": "4.1.8",
"@vitest/ui": "4.1.8",
"@zokugun/fs-extra-plus": "0.5.0",
"@zokugun/tsc-leda": "0.4.2",
"fixpack": "4.0.0",
"globby": "16.2.0",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"release-it": "20.2.0",
"rimraf": "6.1.3",
"taze": "19.14.1",
"tsc-watch": "7.2.0",
"typescript": "5.9.3",
"vitest": "4.1.8",
"xo": "0.60.0",
"yaml": "2.9.0"
},
"overrides": {
"@inquirer/core": {
"mute-stream": "3.0.0"
},
"release-it": {
"undici": "7.28.0"
}
},
"allowScripts": {
"@zokugun/cli-utils": true,
"fsevents": true
},
"keywords": [
"attribute",
"attributes",
"decorator",
"decorators",
"jsonc",
"preprocessor"
]
}