@capture.dev/fast-json-patch 3.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,71 @@
1
+ {
2
+ "name": "@capture.dev/fast-json-patch",
3
+ "version": "3.2.0",
4
+ "type": "module",
5
+ "sideEffects": false,
6
+ "description": "Fast implementation of JSON-Patch (RFC-6902) with duplex (observe changes) capabilities",
7
+ "homepage": "https://github.com/capturedotdev/fast-json-patch",
8
+ "main": "./dist/index.cjs",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/index.js",
12
+ "require": "./dist/index.cjs"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist/**"
17
+ ],
18
+ "keywords": [
19
+ "json",
20
+ "patch",
21
+ "http",
22
+ "rest"
23
+ ],
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "git://github.com/capturedotdev/fast-json-patch.git"
27
+ },
28
+ "bugs": {
29
+ "url": "https://github.com/capturedotdev/fast-json-patch/issues"
30
+ },
31
+ "contributors": [
32
+ {
33
+ "name": "Joachim Wester",
34
+ "email": "joachimwester@me.com",
35
+ "url": "http://www.starcounter.com/"
36
+ }
37
+ ],
38
+ "license": "MIT",
39
+ "publishConfig": {
40
+ "access": "public"
41
+ },
42
+ "devDependencies": {
43
+ "benchmark": "^2.1.4",
44
+ "bluebird": "^3.5.5",
45
+ "bluebird-retry": "^0.11.0",
46
+ "chalk": "^2.4.2",
47
+ "event-target-shim": "^5.0.1",
48
+ "fast-deep-equal": "^2.0.1",
49
+ "http-server": "^0.12.3",
50
+ "jasmine": "^3.4.0",
51
+ "request": "^2.88.0",
52
+ "sauce-connect-launcher": "^1.2.7",
53
+ "saucelabs": "^2.1.9",
54
+ "selenium-webdriver": "^4.0.0-alpha.4",
55
+ "tsup": "^8.5.1",
56
+ "typescript": "~5.9.3"
57
+ },
58
+ "scripts": {
59
+ "build": "tsup",
60
+ "watch": "tsup --watch",
61
+ "test": "npm run tsc && npm run test-core && npm run test-duplex && npm run test-commonjs && npm run test-webpack-import && npm run test-typings",
62
+ "test-sauce": "npm run build && node test/Sauce/Runner.js",
63
+ "test-commonjs": "jasmine test/spec/commonjs/requireSpec.js",
64
+ "test-typings": "tsc test/spec/typings/typingsSpec.ts",
65
+ "test-duplex": "node --experimental-modules jasmine-run.mjs test/**/*[sS]pec.mjs",
66
+ "test-core": "node --experimental-modules jasmine-run.mjs 'test/spec/{jsonPatchTestsSpec,coreSpec,validateSpec}.mjs'",
67
+ "bench": "npm run bench-core && npm run bench-duplex",
68
+ "bench-core": "node test/spec/coreBenchmark.js",
69
+ "bench-duplex": "node test/spec/coreBenchmark.js && node test/spec/duplexBenchmark.js"
70
+ }
71
+ }