-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.24 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.24 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
{
"name": "@k14v/printf-tokenize",
"version": "0.0.6",
"description": "printf format string tokenize",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"type": "module",
"scripts": {
"test": "vitest run",
"test:watch": "vitest watch",
"coverage": "vitest run --coverage",
"build": "tsup src/index.ts --dts --format cjs,esm",
"watch": "npm run build -- --watch",
"prepublishOnly": "npm run build",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"release": "semantic-release",
"cm": "cz"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint && npm test"
}
},
"repository": {
"type": "git",
"url": "git@github.com:k14v/printf-tokenize.git"
},
"keywords": [
"printf",
"tokenize",
"token",
"lexer"
],
"author": "",
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.7.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"@vitest/coverage-v8": "^2.0.2",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.7.0",
"eslint-plugin-import": "^2.29.1",
"globals": "^15.8.0",
"husky": "^1.1.4",
"release-it": "^17.5.0",
"semantic-release": "^24.2.0",
"ts-node": "^10.9.1",
"tsup": "^8.1.0",
"typescript": "^5.0.4",
"vitest": "^2.0.2"
},
"resolutions": {
"conventional-changelog-conventionalcommits": ">= 8.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"update_changelog_on_bump": true,
"bump_message": "chore(release): bump version $current_version → $new_version [skip ci]"
}
}
}