-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.97 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
{
"name": "assert-code-frame",
"version": "0.0.3",
"description": "Enhances Node.js's built-in assert module by printing a code frame along with the error message when an assertion fails.",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "node -r esbuild-register --test test/*.test.ts",
"lint": "eslint src/**/*.ts test/**/*.ts",
"lint:fix": "npm run lint -- --fix",
"release": "read -p 'GITHUB_TOKEN: ' GITHUB_TOKEN && export GITHUB_TOKEN=$GITHUB_TOKEN && release-it"
},
"release-it": {
"github": {
"release": true
},
"git": {
"tagName": "v${version}",
"requireBranch": "main",
"commitMessage": "chore(release): ${version}"
},
"hooks": {
"before:init": [
"npm run build"
]
},
"npm": {
"publish": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
}
},
"keywords": [
"assert",
"codeframe",
"testing",
"debugging"
],
"files": [
"dist/",
"src/",
"README.md",
"LICENSE"
],
"author": "Daniel Lando <daniel.sorridi@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/robertsLando/assert-code-frame.git"
},
"dependencies": {
"@babel/code-frame": "^7.27.1"
},
"devDependencies": {
"@release-it/conventional-changelog": "^10.0.1",
"@tsconfig/node20": "^20.1.5",
"@types/babel__code-frame": "^7.0.6",
"@types/node": "^22.15.21",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"esbuild": "^0.25.4",
"esbuild-register": "^3.6.0",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.4.0",
"prettier": "^3.5.3",
"release-it": "^19.0.2",
"typescript": "^5.8.3"
},
"engines": {
"node": ">= 20"
}
}