-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
116 lines (116 loc) · 2.74 KB
/
package.json
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
108
109
110
111
112
113
114
115
116
{
"name": "generate-json-patch",
"version": "1.2.4",
"author": "Marco Link <[email protected]>",
"private": false,
"repository": "marcolink/generate-json-patch",
"homepage": "https://github.com/marcolink/generate-json-patch",
"license": "MIT",
"description": "A simple function to diff any two objects and generate a JSON Patch",
"main": "dist/index.mjs",
"typings": "dist/index.d.ts",
"module": "dist/index.mjs",
"files": [
"dist",
"README.md"
],
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"node": "./dist/index.js",
"default": "./dist/index.js"
},
"keywords": [
"json",
"diff",
"patch",
"compare",
"generate",
"create"
],
"scripts": {
"build": "tsup src/index.ts",
"test": "ts-mocha -p tsconfig.json src/*.spec.ts",
"test-watch": "npm run test -- -w --watch-files '**/*.ts'",
"test-coverage": "nyc npm run test",
"lint": "eslint --ext .ts ./src",
"lint-fix": "npm run lint -- --fix",
"presemantic-release": "yarn run build",
"semantic-release": "semantic-release"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"tsup": {
"entry": [
"src/index.ts"
],
"format": [
"cjs",
"esm"
],
"clean": true,
"dts": true
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"chai": "^4.3.7",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-prettier": "^5.0.0",
"fast-json-patch": "^3.1.1",
"mocha-ts": "^0.0.0",
"nyc": "^15.1.0",
"semantic-release": "^21.1.1",
"ts-mocha": "^10.0.0",
"tsup": "^7.1.0",
"typescript": "^5.1.6"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{
"type": "build",
"scope": "deps",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/changelog",
{
"changelogFile": "docs/CHANGELOG.md"
}
],
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"docs",
"package.json",
"package-lock.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}