-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.57 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
{
"name": "json-diff-patch-v2",
"version": "1.1.2",
"description": "Diffing and patching of JSON objects",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"repository": "https://github.com/ali-master/json-diff-patch",
"license": "MIT",
"keywords": [
"json",
"diff",
"patch",
"json-diff",
"json-patch",
"json-diff-patch"
],
"scripts": {
"build": "run-p build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:lint": "eslint --fix src/**/*.ts",
"test": "run-s build test:*",
"test:lint": "eslint src/**/*.ts",
"test:prettier": "prettier \"src/**/*.ts\" --list-different",
"test:spelling": "cspell \"{README.md,.github/*.md,src/**/*.ts}\"",
"test:unit": "cross-env CI=true vitest",
"watch:build": "tsc -p tsconfig.json -w",
"watch:test": "vitest --watch",
"watch:test:ui": "run-s test:watch -- --ui",
"cov:check": "run-s test:unit -- run --coverage",
"doc": "run-s doc:html && open-cli build/docs/index.html",
"doc:html": "typedoc src/index.ts --out build/docs",
"doc:json": "typedoc src/index.ts --json build/docs/typedoc.json",
"doc:publish": "gh-pages -m \"[ci skip] Updates\" -d build/docs",
"version": "standard-version",
"reset-hard": "git clean -dfx && git reset --hard && pnpm i",
"prepare-release": "run-s reset-hard test cov:check doc:html version doc:publish",
"preinstall": "npx only-allow pnpm"
},
"engines": {
"node": ">=14",
"pnpm": ">=9"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@vitest/coverage-istanbul": "^2.0.3",
"@vitest/ui": "^2.0.3",
"cross-env": "^7.0.3",
"cspell": "^8.11.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^6.6.3",
"eslint-plugin-import": "^2.29.1",
"gh-pages": "^6.1.1",
"npm-run-all": "^4.1.5",
"open-cli": "^8.0.0",
"prettier": "^3.3.3",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typedoc": "^0.26.4",
"typescript": "^5.5.3",
"vitest": "^2.0.3"
},
"files": [
"build/main",
"build/module",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
}
}