-
-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.21 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.21 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
{
"name": "node-json-db",
"version": "2.6.0",
"description": "Database using JSON file as storage for Node.JS",
"main": "dist/JsonDB.js",
"types": "dist/JsonDB.d.ts",
"scripts": {
"test": "jest --coverage",
"build": "tsc",
"build:doc": "typedoc --entryPointStrategy expand ./src",
"semantic-release": "semantic-release",
"prepare": "husky"
},
"repository": "github:Belphemur/node-json-db",
"keywords": [
"database",
"json",
"db",
"typescript"
],
"author": "Antoine Aflalo <antoineaf+npm@admincmd.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Belphemur/node-json-db/issues"
},
"homepage": "https://github.com/Belphemur/node-json-db",
"files": [
"dist/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"release": {
"getLastRelease": "last-release-git",
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"publish": [
[
"@semantic-release/github",
{
"successCommentCondition": "<% return issue.user.type !== 'Bot'; %>"
}
],
"@semantic-release/npm"
]
},
"publishConfig": {
"access": "public",
"provenance": true
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.0",
"@types/safe-regex": "^1.1.6",
"husky": "^9.1.7",
"jest": "^30.2.0",
"last-release-git": "^0.0.3",
"safe-regex": "~2.1.1",
"semantic-release": "^25.0.0",
"ts-jest": "^29.4.5",
"typedoc": "^0.28.14",
"typescript": "^5.9.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
0,
"always"
]
}
},
"packageManager": "pnpm@10.32.0+sha512.9b2634bb3fed5601c33633f2d92593f506270a3963b8c51d2b2d6a828da615ce4e9deebef9614ccebbc13ac8d3c0f9c9ccceb583c69c8578436fa477dbb20d70"
}